📅  最后修改于: 2022-03-11 15:01:11.832000             🧑  作者: Mango
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` <-"