摘要:
class Example { constructor(name) { this.name = name } func() { console.log(this.name) } } /** * 1.class使用严格模式 * 2.Example只能通过new调用 * 3.func不能通过new调用 阅读全文
摘要:
function require(modulePath) { //1.根据传入的模块路径 得到模块完整的绝对路径 const moduleId = getModuleId(modulePath) //2.判断缓存 if (cache[moduleId]) { return cache[moduleI 阅读全文