This website works better with JavaScript
Página inicial
Explorar
Ajuda
Entrar
lovecoding
/
VIP32
Observar
10
Favorito
0
Fork
0
Arquivos
Issues
0
Pull Requests
0
Wiki
Tree:
f15c4da83b
Branches
Tags
master
VIP32
/
JS高级
/
30.模块化
/
main2.js
main2.js
115 B
Histórico
Raw
1
2
3
4
5
6
7
//统一抛出
let color = 'red';
function fn2() {
console.log("这是第二个函数");
}
export {color,fn2};