Skip to content

输出是什么?

Posted on:2021年7月3日 at 22:09
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`;

如果使用标记模板字面量,第一个参数的值总是包含字符串的数组。其余的参数获取的是传递的表达式的值!

原文转自:https://fe.ecool.fun/topic/2f15c826-8011-46de-9c27-864728b75432