Skip to content

Instantly share code, notes, and snippets.

@conanak99
Created March 9, 2016 00:33
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 conanak99/efffa61155bf75e86269 to your computer and use it in GitHub Desktop.
Save conanak99/efffa61155bf75e86269 to your computer and use it in GitHub Desktop.
var name = "Bob", time = "today";
// Cách cũ
console.log("Hello " + name + " how are you " + time + " ?");
// Dùng string interpolation, để ý dấu `
console.log(`Hello ${name}, how are you ${time}?`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment