Skip to content

Instantly share code, notes, and snippets.

@igorcardozo
Created November 15, 2020 23:36
Embed
What would you like to do?
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