Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
/* Get Programming with JavaScript
 * Listing 4.15
 * Using fat arrow notation
 */
const sayHello = () => {
    console.log("Hello World!");
};
sayHello();
sayHello();
sayHello();
/* Further Adventures
 *
 * 1) Change the message from the sayHello function.
 *
 * Enclose the message in backticks to spread it
 * across multiple lines.
 *
 * 2) Break the Hello World! message across two lines.
 *
 * 3) Create a function that prints the letters
 *    of "Hello World!" one by one down the page.
 *
 */
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
jrlarsenpro
0viewers