1.使用 export default 和 import完成如下要求: 在math.js定义了常量 PI =3.14 和函数 square(),square函数实现传入一个数字并输出这个数字的平方,并通过默认导出方式将它们封装成了一个对象 在index.js中从 math.js导入了名为 MathUtils 的默认变量,并通过访问它的属性和方法来调用 PI 和 square()。
时间: 2024-02-28 16:52:06 浏览: 94
node.js中使用Export和Import的方法
5星 · 资源好评率100%
在 math.js 文件中,我们可以这样定义常量 PI 和函数 square,并通过 export default 将它们封装成一个对象:
```javascript
const PI = 3.14;
function square(num) {
return num * num;
}
export default {
PI,
square,
};
```
在 index.js 文件中,我们可以使用 import 导入 MathUtils 对象,并通过访问它的属性和方法来调用 PI 和 square():
```javascript
import MathUtils from './math.js';
console.log(MathUtils.PI); // 输出 3.14
console.log(MathUtils.square(5)); // 输出 25
```
阅读全文