Skip to main content

One post tagged with "module.exports"

View All Tags

· 7 min read
Robbie Han

前言

exportsmodule.exports这两个之间的关系一直傻傻的分不清,为啥有了module.exports还要有exports?我想通过这篇文章来理清两者之间的关系。

引用类型的形参

在说这两个之前,想先说一个知识点,当 JS 函数参数是引用类型时,其形参在函数内的改变对原变量的影响,这也是理解exportsmodule.exports关系的关键。