This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
lovecoding
/
VIP32
Segui
10
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
f15c4da83b
Rami (Branch)
Tag
master
VIP32
/
JS高级
/
30.模块化
/
main2.js
main2.js
115 B
Cronologia
Originale
1
2
3
4
5
6
7
//统一抛出
let color = 'red';
function fn2() {
console.log("这是第二个函数");
}
export {color,fn2};