是否有一种更像 C 的方式在 javascript 中打印复杂的字符串,最好是不需要大量+
符号和伴随的字符串""
?
我要这个:
console.log ( "Name: %s Age: %s Sex %s Wieght %s Height %s", name, age, sex, weight, height );
而不是这个:
console.log ( "Name: " + name + " Age: " + age + " Sex: " + sex + " Weight: " + weight " Height: " + height );