JavaScript Tutorial/Number Data Type/toPrecision

Материал из Web эксперт
Версия от 08:24, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Demonstrating the toPrecision() method

<html>
<head>
<title>Demonstrating the toPrecision() method</title>
<script type="text/javascript" language="javascript">
<!-- //
function DisplayPrecision(){
    number = new Number(1200000000003);
    for (var i=1; i<8; i++){
        document.write(number.toPrecision(i));
    }
}
// -->
</script>
</head>
<body onload="DisplayPrecision()">
<P>This listing demonstrates the use of the toPrecision() method.</p><br />
</body>
</html>