Skip to content

Instantly share code, notes, and snippets.

@TheOpenDevProject
Created December 15, 2015 03:05
Show Gist options
  • Save TheOpenDevProject/f1c43db57ea09ab7c3e2 to your computer and use it in GitHub Desktop.
Save TheOpenDevProject/f1c43db57ea09ab7c3e2 to your computer and use it in GitHub Desktop.
//ES6
var myFunction = function(optionalParam = true){
}
//ES5 FROM REPL
"use strict";
var myFunction = function myFunction() {
var optionalParam = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment