apply 原理
apply xxxx
apply 实现
/**
*
*/
function _apply(_this: any, args: any[]) {}
(function () {
// npx ts-node app/typeof.ts
// 如果有错 会有打印
const assert = require("assert");
})();
call 原理
call xxxx
call 实现
/**
*
*/
function _call(_this: any, ...args: any[]) {}
(function () {
// npx ts-node app/typeof.ts
// 如果有错 会有打印
const assert = require("assert");
})();
bind 原理
bind xxxx
bind 实现
/**
*
*/
function _bind(_this: any, ...args: any[]) {}
(function () {
// npx ts-node app/typeof.ts
// 如果有错 会有打印
const assert = require("assert");
})();