MDN上的示例代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MDN上的示例代码相关的知识,希望对你有一定的参考价值。
1.bind方法时,提到了偏函数的用法,给函数提供一个默认的参数。
var list = function(){ return Array.prototype.slice.call(arguments); } var list1 = list(1,2,3); console.log(list1); //创建一个函数,有一个默认的起始参数 var plist = list.bind(undefined,5); console.log(plist()); console.log(plist(1,2,3));
2. setTimeOut()时,用bind绑定this的值。 function flower(){ this.petalCount = Math.ceil(Math.random()*12)+1; } flower.prototype.declare = function(){ console.log("I am an beautiful flower with "+this.petalCount+" petals."); } flower.prototype.bloom = function(){ global.setTimeout(this.declare.bind(this),1000); } var aFlower = new flower(); aFlower.bloom();
3.setTimeOut 的使用
var array = [‘one‘,‘two‘,‘three‘]; Array.prototype.myMethod = function(passed){ return arguments.length>0?this[passed]:this; } console.log(array.myMethod()); // one two three console.log(array.myMethod(1)) //two // setTimeout(function() { // console.log(array.myMethod()) // }, 1000);
以上是关于MDN上的示例代码的主要内容,如果未能解决你的问题,请参考以下文章
Chrome + Windows 8.1 上的 Web Share API 是不是损坏?