单项选择题

var hel="hello";
(function(){
var word="World";
console.log(hel+word);
})();以上代码最后一次打印的结果是( )

A.helloWorld
B.undefined
C.程序报错bar is not defined
D.null