return
種 類
命令
書 式
return 戻り値
解 説
関数からの戻り値を指定します。
コード
function calc(a,b)
{
return a + b;
}
alert(calc(2,3));
■サンプルをダウンロードする
>>.zip