関数を初期化するにはどうすればよいですかFunction constructor
:
(両方とも機能しているようです。)
このような :
var t= new Function ("a","alert(a)");
t(3)//3
alert(Object.prototype.toString.apply(t)); //[object Function]
また
var t= Function ("a","alert(a)"); //without new
t(3) //3
alert(Object.prototype.toString.apply(t));//[object Function]
違いはありますか?