Skip to content

Instantly share code, notes, and snippets.

View hazmatzo's full-sized avatar

Zoe Madden-Wood hazmatzo

View GitHub Profile
@hazmatzo
hazmatzo / simple-es5-example.js
Created April 1, 2016 17:54
Simple ES5 Example
// ES5
// example 1
function ([param] [, param]) {
statements
}
// example 2
function (param) {
return expression
@hazmatzo
hazmatzo / simple-es6-example.js
Created April 1, 2016 17:49
Simple ES6 Example
// ES6
// example 1
([param] [, param]) => {
statements
}
// example 2
param => expression