Loading

摘要: class Example { constructor(name) { this.name = name } func() { console.log(this.name) } } /** * 1.class使用严格模式 * 2.Example只能通过new调用 * 3.func不能通过new调用 阅读全文
posted @ 2022-11-19 21:09 资深if-else侠 阅读(248) 评论(0) 推荐(0) 编辑
摘要: function require(modulePath) { //1.根据传入的模块路径 得到模块完整的绝对路径 const moduleId = getModuleId(modulePath) //2.判断缓存 if (cache[moduleId]) { return cache[moduleI 阅读全文
posted @ 2022-11-19 14:33 资深if-else侠 阅读(578) 评论(0) 推荐(0) 编辑