这段代码中的“${msg}”部分是什么意思? 谁能帮忙解释一下,谢谢了
let msg = 'hello world'
console.log(`%c ${msg}`, 'font-size: 36px; font-weight: bold; color : green');
这段代码中的“${msg}”部分是什么意思? 谁能帮忙解释一下,谢谢了
let msg = 'hello world'
console.log(`%c ${msg}`, 'font-size: 36px; font-weight: bold; color : green');
模板字符串相当于加强版的字符串,用反引号 `,除了作为普通字符串,还可以用来定义多行字符串,还可以在字符串中加入变量和表达式。
基本用法
普通字符串
let string = Hello'\n'world
;
console.log(string);
// "Hello'
// 'world"
多行字符串:
let string1 = Hey,
;
can you stop angry now?
console.log(string1);
// Hey,
// can you stop angry now?
字符串插入变量和表达式。
变量名写在 ${} 中,${} 中可以放入 JavaScript 表达式。
let name = "Mike";
let age = 27;
let info = My Name is ${name},I am ${age+1} years old next year.
console.log(info);
// My Name is Mike,I am 28 years old next year.
字符串中调用函数:
function f(){
return "have fun!";
}
let string2= Game start,${f()}
;
console.log(string2); // Game start,have fun!