異なるファイルに 2 つの BI オブジェクトがあり、最初のオブジェクトを他のオブジェクトで拡張したいと考えています。
最初のオブジェクト
var BI = BI || {};
BI = {
firstInit: function () {
console.log('I am first init');
}
}
その他のファイル
2番目のオブジェクト
BI = {
init: function () {
console.log('I am init');
}
}
ここで、2番目のオブジェクトにも が含まれている必要がありfirstInit
ます。さらに説明できることを教えてください。jQueryを使用しています。