Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created July 17, 2018 10:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/5af1d51f526007a71ba8b3c7b6e7ad6c to your computer and use it in GitHub Desktop.
Save debugmodedotnet/5af1d51f526007a71ba8b3c7b6e7ad6c to your computer and use it in GitHub Desktop.
var add = function(num1,num2){
let res = num1 + num2;
console.log(res);
}(7,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment