标签: javascript string console.log
是否可以通过引用类似于C的printf函数的变量来打印字符串?我不想用'+'运算符连接字符串。
例如:
console.log("What the difference in %i - %i ?", 7, 2);
应输出:
What the difference in 7-2 ?