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 6.12
 * Using the return value as an argument
 */
const getHelloTo = name => `Hello to ${name}`;
console.log(getHelloTo("Kandra"));
console.log(getHelloTo("Dax"));                                         
/* Further Adventures
 *
 * 1) Rewrite the function using curly braces
 *    for the function body and an explicit
 *    return statement.
 *
 * 2) Run the program to check the output
 *    is unaffected by the change in form.
 *
 * Do you prefer the function with or without
 * the return statement?
 *
 */
Output

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

Dismiss x
public
Bin info
jrlarsenpro
0viewers