Created
December 29, 2020 13:47
-
-
Save shahab570/7a7504bedf60e51b0a9e029aa9791dca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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