Skip to content

Instantly share code, notes, and snippets.

@vishalm30
Created July 16, 2019 15:38
Show Gist options
  • Select an option

  • Save vishalm30/5bb2c34d57318ed618071f71877be6ca to your computer and use it in GitHub Desktop.

Select an option

Save vishalm30/5bb2c34d57318ed618071f71877be6ca to your computer and use it in GitHub Desktop.
function add(a,b){
var c = a+b;
return c;
}
function main(){
var c = add(2,5);
console.log(c);
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment