Javascript Variable Declareについて質問があります。 次の2つの定義方法の違いは何ですか? alertMsgは第1の方法で実行されますが、第2の方法では実行されないのはなぜですか? ありがとうございます。Javascript Variable Declareの別の方法
// 1
var alertMsgInvoker = alertMsg ('hi there');
function alertMsg (msg) {
alert(msg);
}
// 2
var alertMsgInvoker = function() {
alertMsg ('hi there');
}
function alertMsg (msg) {
alert(msg);
}
です。 var alertMsgInvoker = function(){...} equals関数alertMsgInvoker(){...} - 今すぐzjy2004ren – zjy2004ren
@ zjy2004ren - 基本的には、まさにそれ! :) – Rob