Last active
January 1, 2018 15:22
-
-
Save e-vural/60186ce7908c16b8eaa8af9708e82157 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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