Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save elieandraos/5849260 to your computer and use it in GitHub Desktop.
Save elieandraos/5849260 to your computer and use it in GitHub Desktop.
Default Parametrs Values In Javascript Functions
function func(a,b){
if(typeof(a)==='undefined') a = 10;
if(typeof(b)==='undefined') b = 20;
//js code here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment