📅  最后修改于: 2022-03-11 15:03:19.232000             🧑  作者: Mango
// first.js...(first script file)
var colorCodes = {
back : "#fff",
front : "#888",
side : "#369"
};
//in another file...(second script file)
alert(colorCodes.back); // alerts `#fff`
//in your html...