Skip to content

Instantly share code, notes, and snippets.

@igorcardozo
Created November 15, 2020 23:36
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 igorcardozo/bab982e31b78bee50f5743272170f32a to your computer and use it in GitHub Desktop.
Save igorcardozo/bab982e31b78bee50f5743272170f32a to your computer and use it in GitHub Desktop.
function sum(a,b) {
return a[0] + b[0];
}
console.log(sum(2,2));
console.log(sum("hello", "there"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment