Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created December 29, 2020 13:47
Show Gist options
  • Save shahab570/7a7504bedf60e51b0a9e029aa9791dca to your computer and use it in GitHub Desktop.
Save shahab570/7a7504bedf60e51b0a9e029aa9791dca to your computer and use it in GitHub Desktop.
function square(x,result = x *x ) {
console.log(result);
}
square(5); //25
square(6) ; //36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment