Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created July 17, 2018 10:44
Embed
What would you like to do?
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