<< 40/89 >>
First Last

記号しか使わない - JavaScript

 js> 1["constructor"]["constructor"]
 function Function() {
     [native code]
 }
 js> 1["constructor"]["constructor"]("print('hello')")()
 hello

文字列は適当に "[object Object]" とかそういうものから取ってくる

 js> ""+{}
 [object Object]
 js> (""+{})[5]
 c

http://d.hatena.ne.jp/javascripter/20090607/1244386028