Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created December 28, 2017 02:37
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 debugmodedotnet/7840d82a1ff6f6f1b466a9b292bdfb11 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/7840d82a1ff6f6f1b466a9b292bdfb11 to your computer and use it in GitHub Desktop.
var num1 = 9;
var num2 = 7;
var result = `Result = ${num1 + num2} and twice of result = ${2 * (num1 + num2)}`;
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment