Skip to content

Instantly share code, notes, and snippets.

@rohit012
Created January 16, 2017 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rohit012/b547cc07a244e1060c34c871e5067166 to your computer and use it in GitHub Desktop.
Save rohit012/b547cc07a244e1060c34c871e5067166 to your computer and use it in GitHub Desktop.
// without default params
var myFunc = function (value, options){
var value = value || 0;
var options = options || {};
// do some stuff
}
// with default params
var myFunWithDefaultParam = function (value = 0, options = {}){
// do some stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment