When I type this code:
const name = "Stephen";
document.write("Hey ${name} how are you?");
All browser shows:
Hey ${name} how are you?
instead of:
Hey Stephen how are you?
What did I do wrong? isn't that E6 feature supposed to work? I tried Safari, chrome and everywhere it shows the same problem