JavaScript Reference/Javascript Methods/toPrecision

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

"toPrecision()" Example

    
<html>
<body>
<button onclick="var myNum = new Number(10000); alert(myNum.toPrecision(1));">
to Precision
</button>
</body>
</html>



"toPrecision()" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |Number                                                        |
+----------------+--------------------------------------------------------------+



"toPrecision()" Syntax Parameters and Note

Note:
Converts a number to exponential notation if it contains more digits 
than specified parameter.
    
Syntax:
    
numberName.toPrecision(param1)
Parameters:
    param1   Required; minimum number of digits to convert to exponential notation.