我需要将数组作为内置函数传递。例如,这很好用:
console.info('%cBlue text%c Red text', 'color:blue', 'color:red');
有3个参数,但是当我得到n个参数时该怎么办?
var x = [ '%cBlue text%c Red text...%c nth-Text', 'color:blue', 'color:red', ... , 'nth-color:black'];
console.info.apply(null, x);
不起作用。提前致谢。