This website works better with JavaScript
Home
Explore
Help
Sign In
lovecoding
/
VIP32
Watch
10
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
e0692946e3
Branches
Tags
master
VIP32
/
JS高级
/
30.模块化
/
main2.js
main2.js
115 B
History
Raw
1
2
3
4
5
6
7
//统一抛出
let color = 'red';
function fn2() {
console.log("这是第二个函数");
}
export {color,fn2};