Template Literals
JavaScript used to have two ways of writing a string: using single quotes or using double quotes. With template literals, we now have a third way: using backticks. Looks something like this:
let myBelovedString = `A dance under the moonlight.`;
Once...
blog.bracketsinstitute.com9 min read