<script type="text/javascript">
var DYN_WEB = DYN_WEB || {};
DYN_WEB.Util = (function( Ut ) {
Ut.getResult = function ( cl, tag, el ) {
console.log(arguments)
}
return Ut;
})( DYN_WEB.Util || {} );
var links = DYN_WEB.Util.getResult('show-hide');
</script>
chrome->console では、次のように表示されます。["show-hide"]
質問:
スクリプトがこの行に移動したとき: DYN_WEB.Util
, まだ到達していないvar links
のに、なぜconsole.log(arguments)
出力でき["show-hide"]
ないのundefined
ですか?