js 随手笔记----------
标签:
JavaScript
遇到一个题 题目是这样的
编写一个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);
点击查看更多内容
1人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦