Skip to content

Instantly share code, notes, and snippets.

@savelee
Last active July 25, 2016 14:06
Show Gist options
  • Save savelee/30bcb16c8dde1ea6625f3f2ec1759e27 to your computer and use it in GitHub Desktop.
Save savelee/30bcb16c8dde1ea6625f3f2ec1759e27 to your computer and use it in GitHub Desktop.
Example default parameters
//ES2015
function makeRequest(url, timeout = 2000, callback = function(){}) {
//do something
}
//ES5
function makeRequest(url, timeout, callback) {
timeout = (typeof timeout !== "undefined") ? timeout : 2000;
callback = callback || function() {};
//do something
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment