var a1 = (function() {
console.log('hello1')
})();

var a2 = (function() {
console.log('hello2')
}());


위에껀 이해되는데 아래껀 어떻게 가능한지 모르겠어 어떻게 평가되는거지?


그냥 문법인거?