-
-
Save breakerfall/5296896 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset=utf-8 /> | |
<title>Defining JavaScript functions, the ES6 way</title> | |
<h1>Defining JavaScript functions, the ES6 way</h1> | |
<em>Use Firefox 22 (Firefox Nightly)</em> | |
<script> | |
// old school | |
var square = function(x) { | |
return x * x; | |
} | |
console.log(square(3)); | |
// Expression closures | |
// doc: http://mzl.la/10TNpzc | |
var square = function(x) x * x; | |
console.log(square(3)); | |
// Arrow functions | |
// spec: http://bit.ly/KN3z1c | |
var square = x => { return x * x; }; | |
console.log(square(3)); | |
// Arrow function + expression closure | |
var square = x => x * x; | |
console.log(square(3)); | |
// Destructuring assignment | |
// doc: http://mzl.la/Xed4Ua | |
var squareAndCube = x => [x*x, x*x*x]; | |
var [s,c] = squareAndCube(3); | |
console.log(s + ", " + c); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment