"hello"
'hello'
`hello`
反引号:``可以创建一个字符串模版
let hello: string = "hello word"
let str = `my name ${hello}`
console.log(str)
"hello"
'hello'
`hello`
反引号:``可以创建一个字符串模版
let hello: string = "hello word"
let str = `my name ${hello}`
console.log(str)