Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta name="description" content="ES6 Arrow Functions [1]">
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>ES6 Arrow Functions: The New Fat & Concise Syntax in JavaScript</title>
</head>
<body>
</body>
</html>
 
var multiplyES5 = function(x, y) {
  return x * y;
}; 
 
const multiplyES6 = (x, y) => { return x * y };
console.log(multiplyES6(7, 7));
Output

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

Dismiss x
public
Bin info
SitePointEditorspro
0viewers