Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 1, 2021 15:39
Show Gist options
  • Save shahab570/89bfd4a9d3a4d4796ff7c57fcb0dde7f to your computer and use it in GitHub Desktop.
Save shahab570/89bfd4a9d3a4d4796ff7c57fcb0dde7f to your computer and use it in GitHub Desktop.
function sum(x,y,z) {
let sum = x + y + z;
return sum;
}
console.log(sum(5,5,5,5)); //15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment