Created
March 14, 2018 17:28
-
-
Save Mrshinezee/55742d8f579642c9cb9df09fa4da3281 to your computer and use it in GitHub Desktop.
Backticks created by Mrshinezee - https://repl.it/@Mrshinezee/Backticks
This file contains 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
let call_name = 'shine'; | |
let mention = `Una go hala my name one day ${call_name}`; | |
alert( mention); | |
let name = "John"; | |
// embed a variable | |
alert( `Hello, ${name}!` ); // Hello, John! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment