Skip to content

Instantly share code, notes, and snippets.

@lynnkwong
Last active August 12, 2022 16:52
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 lynnkwong/0376b512263b2d6dd3b0a661fb83efb9 to your computer and use it in GitHub Desktop.
Save lynnkwong/0376b512263b2d6dd3b0a661fb83efb9 to your computer and use it in GitHub Desktop.
function sum(x, y) {
return x + y
}
const x = 100;
const y = '200';
const xPlusY = sum(x, y);
console.log(`${x} + ${y} = ${xPlusY}`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment