遇到一个题 题目是这样的
编写一个function print(str,len){
}
打印 len次 str:
例子 print("hello",3);
就在控制台中 打印 hellohellohello ,如果后面参数是4就打印4次要求:**不能用循环 (for ,while ,if,递归 ,等类似的);
function print(str, len) {
var arr=new Array(len+1);
console.log(arr.join(str));
}
print("hello",4);
还有一个问题就是关于 arguments的 arguments 是个类似数组的对象,怎么把它转化为一个 真的数组,包含传递的实参哪
function test() {
console.log([].slice.call(arguments));
}
test(1,2,3,4);