モジュール「B」のモジュール「A」でコードを使用したいのですが、その方法がわかりません。
私がしたい:
a.js
module.exports = {
hello : function(){
alert('helo world');
}
};
b.js
module.exports = {
start : function(){
alert(A.hello());
}
};
main.js
A = require("a");
B = require("b");
B.start();
しかし、「Aは定義されていません」と表示されます。
ありがとう !