js
qq_37705283
这个作者很懒,什么都没留下…
展开
-
call() apply()方法
//call() 方法可接受参数 var person={ fullName:function(city,country){ return this.firstName + " " +this.lastName + "," +city+","+country } } var person1={ firstName:"mable", lastName:"Gates" } person.fullName.call(person1,"nanjing","china.原创 2022-03-14 14:54:35 · 66 阅读 · 0 评论 -
利用arguments slice reduce call ...求和
//方法一 function fn4(){ console.log(arguments) //arguments沒有数组的方法,所以用数组的原型加call改变指向 //slice从数组中选取元素array.slice(start, end) 不传start end获取数组里面全部的值 var fn5= Array.prototype.slice.call(arguments); console.log(fn5) return fn5.reduce((total.原创 2021-11-25 11:12:34 · 477 阅读 · 0 评论