JSの匿名関数の呼び出し
1077 ワード
//
// (function(){
// alert(' ')//
// })()
(function(){
alert(' ')
}());
// ( , )
//
+ function(){
alert(' ')
}()
!function(){
alert(' ')
}()
- function(){
alert(' ,')
}()
~ function(){
alert(' , ')
}()
//
var test=function(){
alert(' , ')
}()//
void function(){
alert(' , ')
}
//
new function(){
alert(' , ')
}()
[function(){
alert(' , ')
}()]
typeof function(){
alert(' , , ')
}()
true&&function(){
alert(' , , ')
}()
false||function(){
alert(' , , ')
}()
1&&function(){
alert(' , , ')
}()
'a'&&function(){
alert(' , , 。')
}()
true,new function(){
alert(' , , 。 ')
}()
//
; (function(){
alert(' , , 。 。')
})()