js apply call bind
在 javascript 中,call 和 apply 都是为了改变某个函数运行时的上下文(context)而存在的,换句话说,就是为了改变函数体内部 this 的指向。
JavaScript 的一大特点是,函数存在「定义时上下文」和「运行时上下文」以及「上下文是可以改变的」这样的概念。
function fruits() {}
fruits.prototype = {
color: “red”,
say: function() {
console.log("My color is " + this.col
转载
2021-02-07 09:26:35 ·
107 阅读 ·
0 评论