函数+模板字符串
输出是什么?
function getPersonInfo(one, two, three) {
console.log(one)
console.log(two)
console.log(three)
}
const person = 'Lydia'
const age = 21
getPersonInfo`${person} is ${age} years old`
A:
"Lydia"
21
["", " is ", " years old"]
B:
["", " is ", " years old"]
"Lydia"
21
C:
"Lydia"
["", " is ", " years old"]
21
最后更新于
这有帮助吗?