Number valueOf( ) Method In JavaScript
The valueof() method in JavaScript is used to return the primitive value of a number.
This method is usually called internally by JavaScript and not explicitly in web code.
Syntax:
number.valueOf()
Return Value:
The valueof() method in JavaScript returns a number representing the primitive value of the specified Number object.
What is Primitive Value?
Primitive values are the type of values that a variable can hold. Primitive value is stored directly in the location that the variable accesses. Primitive values are data that are stored on the stack.
Primitive types include Undefined, Null, Boolean, Number, or String.
Examples:
Input : 213
Output : 213
Input : -213
Output :-213
Input : 0
Output : 0
Input : 0/0
Output : NaN
- Passing a positive number as an argument in the valueOf() method.
<scripttype="text/javascript">var num=213;document.write("Output : " + num.valueOf());</script>chevron_rightfilter_noneOUTPUT:
Output : 213
- Passing a negative number as an argument in the valueOf() method.
<scripttype="text/javascript">var num=-213;document.write("Output : " + num.valueOf());</script>chevron_rightfilter_noneOUTPUT:
Output : -213
- Passing a zero as an argument in the valueOf() method.
<scripttype="text/javascript">var num=0;document.write("Output : " + num.valueOf());</script>chevron_rightfilter_noneOUTPUT:
Output : 0
- Passing an equation(equating to infinite value) as an argument in the valueOf() method.
<scripttype="text/javascript">var num=0/0;document.write("Output : " + num.valueOf());</script>chevron_rightfilter_noneOUTPUT:
Output : Nan
Recommended Posts:
- JavaScript | string.valueOf()
- JavaScript | boolean.valueOf() function
- JavaScript | date.valueOf() function
- JavaScript | Number.MAX_VALUE & Number.MIN_VALUE with Examples
- JavaScript | Array map() Method
- JavaScript | Replace() Method
- JavaScript | Array.from() method
- JavaScript | Array from() Method
- JavaScript | getTime() Method
- JavaScript | Sort() method
- JavaScript | Array.findIndex() Method
- JavaScript | removeEventListener() method with examples
- JavaScript | JSON parse() Method
- JavaScript | Array reduce() Method
- JavaScript | array.entries() Method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



