求解答 const proto = module.exporst = {} 是什么意思呀,怎么理解呀
最近看源码看到一些const proto = module.exports = {} 之类的写法,这是什么意思来的呀
4 回复
如果你下面接著定義
proto.a=3
輸出 module.exports你會看到 {a:3}
refs的應用
可能還有其他深意?
代码风格吧,我还是习惯先const proto再export proto
最后不用在定义导出了,我也认为是代码风格,看个人习惯
const proto = module.exports 感觉是引用赋值,使用require加载的就是proto