Skip to content

Instantly share code, notes, and snippets.

@hemanth22
Forked from adnanrahic/addition.js
Last active May 6, 2024 16:46
Show Gist options
  • Save hemanth22/9bac5fc4647f4af5521b69c11283a970 to your computer and use it in GitHub Desktop.
Save hemanth22/9bac5fc4647f4af5521b69c11283a970 to your computer and use it in GitHub Desktop.
js additionscript
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