-
-
Save hemanth22/9bac5fc4647f4af5521b69c11283a970 to your computer and use it in GitHub Desktop.
js additionscript
This file contains hidden or 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 addTwoNumbers(x, y) { | |
return x + y; | |
} | |
console.log(addTwoNumbers(5, 1)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment