Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save e-vural/60186ce7908c16b8eaa8af9708e82157 to your computer and use it in GitHub Desktop.
Save e-vural/60186ce7908c16b8eaa8af9708e82157 to your computer and use it in GitHub Desktop.
var num1 = 5;
var num2 = 6;
var sum = num1 + +num2;
or
var sum = eval(num1 + num2);
console.log(sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment