小数点以下3桁までを表示

説明

小数点以下3桁までを表示するには%.3fと指定します。

サンプル [実行する]

n1 = this.getField("Text1").value;
n2 = util.printf("%.3f",n1);
app.alert(n2);