throw
書式
throw 値;
説明
エラーを発生させ、指定した値をcatchに渡します。throwはtry{ }ブロック内で使用します。
[
以下のJavaScriptプログラムをダウンロード
]
try{ throw(2); var mz=700; }catch(e){ log(e,"\n"); }
目次に戻る