之前在bind和apply以及call函数使用中详解总结过bind
和apply
以及call
函数的使用,下面手写一下三个函数。
一、首先call函数
Function.prototype.MyCall = function (thisArg, ...args) {
let fn = this //this指的是当前函数
thisArg = (thisArg === undefined || thisArg === null) ? window : Object
之前在bind和apply以及call函数使用中详解总结过bind
和apply
以及call
函数的使用,下面手写一下三个函数。
一、首先call函数
Function.prototype.MyCall = function (thisArg, ...args) {
let fn = this //this指的是当前函数
thisArg = (thisArg === undefined || thisArg === null) ? window : Object
道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。