Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
実行時に JavaScript コードを文字列変数に初期化しています。保存された JavaScript コードを実行する方法。
使用できますeval
eval
var code = "alert('sdfdf');"; eval(code); // this will execute the code inside the string