Skip to content

Instantly share code, notes, and snippets.

@zonayedpca
Created March 29, 2018 17:04
Show Gist options
  • Save zonayedpca/9c2bbeecbb80f9fc511f09b9bf67f576 to your computer and use it in GitHub Desktop.
Save zonayedpca/9c2bbeecbb80f9fc511f09b9bf67f576 to your computer and use it in GitHub Desktop.
Basic Function
function sumMachine(a, b) {
var sum = a + b;
return sum;
}
console.log(sumMachine(2, 2));
console.log(sumMachine(4, 4));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment