const myVar = "I am inside nested backticks" const myString = `Nested backticks can be escaped like this -> `${myVariable}` <-` console.log(myString) // "Nested backticks can be escaped like this -> `I am inside nested backticks` <-"