JavaScript Example (Program)
Learn Details

Q. What is the work of toPrecision() method ?

toFixed() Toprecision()

इसमें जितने parameter में number डालेंगे उतना decimal digit दिखायेगा

मतलब की यह  केवल decimal के बाद के value को change कर सकता  है।

इसमें जितने parameter में number डालेंगे उतना decimal digit दिखायेगा

मतलब की यह  पुरे value को change कर सकता  है।

var a =10.5999, a.toFixed(2); to इसका  output 10.60 होगा

 

var a =10.5999, a.toPrecision(2); to इसका  output 11 होगा

Syntax :

toPrecision(number)

Note:- इसमें method () के अंदर एक नंबर parameter को use करना होता है। इस  parameter में हम जीतने नंबर के digit को use करेंगे तो उतने total digit को display करेगा।

जैसे की 

  • var a =10.5999, a. toPrecision(3); to इसका output 10.6 होगा
  • var a =10.5999, a.toPrecision (2); to इसका output 11 होगा
  • var a =10, a.toPrecision (2); to इसका output 10होगा
  • var a =10, a.toPrecision (4); to इसका output 10.00 होगा

1. Example

<script type="text/javascript">

            var a = 10.5999;

            var b = a.toPrecision(3);

            document.write(b);

            document.write("<br> Data Type : " + typeof b)

</script>

Out Put :

10.6
Data Type : string


2. Example

<script type="text/javascript">

            var a = 10.5999;

            var b = a.toPrecision(4);

            document.write(b);

            document.write("<br> Data Type : " + typeof b)

</script>

Out Put :

10.60
Data Type : string

3. Example

<script type="text/javascript">

            var a = 10.5999;

            var b = a.toPrecision(2);

            document.write(b);

            document.write("<br> Data Type : " + typeof b)

</script>

Out Put :

11
Data Type : string

4. Example

<script type="text/javascript">

            var a = 10;

            var b = a.toPrecision(2);

            document.write(b);

            document.write("<br> Data Type : " + typeof b)

</script>

Out Put :

10
Data Type : string