- Javascript Basics Tutorial
- Javascript - Home
- JavaScript - Overview
- JavaScript - Features
- JavaScript - Enabling
- JavaScript - Placement
- JavaScript - Syntax
- JavaScript - Hello World
- JavaScript - Console.log()
- JavaScript - Comments
- JavaScript - Variables
- JavaScript - let Statement
- JavaScript - Constants
- JavaScript - Data Types
- JavaScript - Type Conversions
- JavaScript - Strict Mode
- JavaScript - Reserved Keywords
- JavaScript Operators
- JavaScript - Operators
- JavaScript - Arithmetic Operators
- JavaScript - Comparison Operators
- JavaScript - Logical Operators
- JavaScript - Bitwise Operators
- JavaScript - Assignment Operators
- JavaScript - Conditional Operators
- JavaScript - typeof Operator
- JavaScript - Nullish Coalescing Operator
- JavaScript - Delete Operator
- JavaScript - Comma Operator
- JavaScript - Grouping Operator
- JavaScript - Yield Operator
- JavaScript - Spread Operator
- JavaScript - Exponentiation Operator
- JavaScript - Operator Precedence
- JavaScript Control Flow
- JavaScript - If...Else
- JavaScript - While Loop
- JavaScript - For Loop
- JavaScript - For...in
- Javascript - For...of
- JavaScript - Loop Control
- JavaScript - Break Statement
- JavaScript - Continue Statement
- JavaScript - Switch Case
- JavaScript - User Defined Iterators
- JavaScript Functions
- JavaScript - Functions
- JavaScript - Function Expressions
- JavaScript - Function Parameters
- JavaScript - Default Parameters
- JavaScript - Function() Constructor
- JavaScript - Function Hoisting
- JavaScript - Self-Invoking Functions
- JavaScript - Arrow Functions
- JavaScript - Function Invocation
- JavaScript - Function call()
- JavaScript - Function apply()
- JavaScript - Function bind()
- JavaScript - Closures
- JavaScript - Variable Scope
- JavaScript - Global Variables
- JavaScript - Smart Function Parameters
- JavaScript Objects
- JavaScript - Number
- JavaScript - Boolean
- JavaScript - Strings
- JavaScript - Arrays
- JavaScript - Date
- JavaScript - DataView
- JavaScript - Math
- JavaScript - RegExp
- JavaScript - Symbol
- JavaScript - Sets
- JavaScript - WeakSet
- JavaScript - Maps
- JavaScript - WeakMap
- JavaScript - Iterables
- JavaScript - Reflect
- JavaScript - TypedArray
- JavaScript - Template Literals
- JavaScript - Tagged Templates
- Object Oriented JavaScript
- JavaScript - Objects
- JavaScript - Classes
- JavaScript - Object Properties
- JavaScript - Object Methods
- JavaScript - Static Methods
- JavaScript - Display Objects
- JavaScript - Object Accessors
- JavaScript - Object Constructors
- JavaScript - Native Prototypes
- JavaScript - ES5 Object Methods
- JavaScript - Encapsulation
- JavaScript - Inheritance
- JavaScript - Abstraction
- JavaScript - Polymorphism
- JavaScript - Destructuring Assignment
- JavaScript - Object Destructuring
- JavaScript - Array Destructuring
- JavaScript - Nested Destructuring
- JavaScript - Optional Chaining
- JavaScript - Global Object
- JavaScript - Mixins
- JavaScript - Proxies
- JavaScript Versions
- JavaScript - History
- JavaScript - Versions
- JavaScript - ES5
- JavaScript - ES6
- ECMAScript 2016
- ECMAScript 2017
- ECMAScript 2018
- ECMAScript 2019
- ECMAScript 2020
- ECMAScript 2021
- ECMAScript 2022
- JavaScript Cookies
- JavaScript - Cookies
- JavaScript - Cookie Attributes
- JavaScript - Deleting Cookies
- JavaScript Browser BOM
- JavaScript - Browser Object Model
- JavaScript - Window Object
- JavaScript - Document Object
- JavaScript - Screen Object
- JavaScript - History Object
- JavaScript - Navigator Object
- JavaScript - Location Object
- JavaScript - Console Object
- JavaScript Web APIs
- JavaScript - Web API
- JavaScript - History API
- JavaScript - Storage API
- JavaScript - Forms API
- JavaScript - Worker API
- JavaScript - Fetch API
- JavaScript - Geolocation API
- JavaScript Events
- JavaScript - Events
- JavaScript - DOM Events
- JavaScript - addEventListener()
- JavaScript - Mouse Events
- JavaScript - Keyboard Events
- JavaScript - Form Events
- JavaScript - Window/Document Events
- JavaScript - Event Delegation
- JavaScript - Event Bubbling
- JavaScript - Event Capturing
- JavaScript - Custom Events
- JavaScript Error Handling
- JavaScript - Error Handling
- JavaScript - try...catch
- JavaScript - Debugging
- JavaScript - Custom Errors
- JavaScript - Extending Errors
- JavaScript Important Keywords
- JavaScript - this Keyword
- JavaScript - void Keyword
- JavaScript - new Keyword
- JavaScript - var Keyword
- JavaScript HTML DOM
- JavaScript - HTML DOM
- JavaScript - DOM Methods
- JavaScript - DOM Document
- JavaScript - DOM Elements
- JavaScript - DOM Forms
- JavaScript - Changing HTML
- JavaScript - Changing CSS
- JavaScript - DOM Animation
- JavaScript - DOM Navigation
- JavaScript - DOM Collections
- JavaScript - DOM Node Lists
- JavaScript Miscellaneous
- JavaScript - Ajax
- JavaScript - Async Iteration
- JavaScript - Atomics Objects
- JavaScript - Rest Parameter
- JavaScript - Page Redirect
- JavaScript - Dialog Boxes
- JavaScript - Page Printing
- JavaScript - Validations
- JavaScript - Animation
- JavaScript - Multimedia
- JavaScript - Image Map
- JavaScript - Browsers
- JavaScript - JSON
- JavaScript - Multiline Strings
- JavaScript - Date Formats
- JavaScript - Get Date Methods
- JavaScript - Set Date Methods
- JavaScript - Modules
- JavaScript - Dynamic Imports
- JavaScript - BigInt
- JavaScript - Blob
- JavaScript - Unicode
- JavaScript - Shallow Copy
- JavaScript - Call Stack
- JavaScript - Reference Type
- JavaScript - IndexedDB
- JavaScript - Clickjacking Attack
- JavaScript - Currying
- JavaScript - Graphics
- JavaScript - Canvas
- JavaScript - Debouncing
- JavaScript - Performance
- JavaScript - Style Guide
- JavaScript Useful Resources
- JavaScript - Questions And Answers
- JavaScript - Quick Guide
- JavaScript - Functions
- JavaScript - Resources
JavaScript - The Number Object
The JavaScript Number object represents numerical data as floating-point numbers. It contains different properties (constants) and methods for working on numbers. In general, you do not need to worry about Number objects because the browser automatically converts number literals to instances of the number class.
A JavaScript Number object can be defined using the Number constructor. Other types of data such as strings, etc., can be converted to numbers using Number() function.
A JavaScript number is always stored as a floating-point value (decimal number). JavaScript does not make a distinction between integer values and floating-point values. JavaScript represents numbers using the 64-bit floating-point format defined by the IEEE 754 standard.
Syntax
The syntax for creating a number object is as follows −
const val = new Number(number);
In the place of number, if you provide any non-number argument, then the argument cannot be converted into a number, it returns NaN (Not-a-Number).
We can also create the number primitives by assigning the numeric values to the variables −
let num1 = 24; let num2 = 35.65;
The JavaScript automatically converts the number primitive to the Number objects. So we can use all properties and methods of Number object on number primitives.
Number Properties
Here is a list of each property and their description.
Sr.No. | Property & Description |
---|---|
1 | It represents the difference between 1 and the smallest floating point number greater than 1. |
2 | It returns the maximum safe integer value. |
3 |
The largest possible value a number in JavaScript can have 1.7976931348623157E+308. |
4 | It returns the minimum safe integer value. |
5 |
The smallest possible value a number in JavaScript can have 5E-324. |
6 |
Equal to a value that is not a number. |
7 |
A value that is less than MIN_VALUE. |
8 |
A value that is greater than MAX_VALUE |
9 |
A static property of the Number object. Use the prototype property to assign new properties and methods to the Number object in the current document. |
10 |
Returns the function that created this object's instance. By default this is the Number object. |
Number Methods
The Number object contains only the default methods (instance and static methods) that are a part of every object's definition.
Instance Methods
Sr.No. | Method & Description |
---|---|
1 |
Forces a number to display in exponential notation, even if the number is in the range of standard notation. |
2 |
Formats a number with a specific number of digits to the right of the decimal. |
3 |
Returns a string value version of the current number in a format that may vary according to local settings. |
4 |
Defines how many total digits (including digits to the left and right of the decimal) to display of a number. |
5 |
Returns the string representation of the number's value. |
6 |
Returns the number's value. |
Static Methods
Sr.No. | Method & Description |
---|---|
1 |
It checks whether the value is a valid number or not. |
2 |
It checks whether the number is finite. |
3 |
Returns Boolean when the number is an integer value. |
4 |
It ensures that the integer is a safe integer. |
5 |
Parses the float value from the string. |
6 |
Parses the integer value from the string. |
Examples
Let's take a few examples to demonstrate the properties and methods of Number.
Example: Creating Number Object
In the example below, the num variable contains the number object having the value 20. In the output, you can see that type of the num variable is an object.
<html> <body> <p id = "output"> </p> <script> const num = new Number(20); document.getElementById("output").innerHTML = "num = " + num + "<br>" + "typeof num : " + typeof num; </script> </body> </html>
Output
num = 20 typeof num : object
Example: Number Properties
In the example below, we have displayed some Number properties. You should try to print more properties.
<html> <body> <div id="output"></div> <script> document.getElementById("output").innerHTML = "Max Value : " + Number.MAX_VALUE + "<br>" +"Min Value : " + Number.MIN_VALUE + "<br>" +"Positive Infinity : " + Number.POSITIVE_INFINITY + "<br>" +"Negative Infinity : " + Number.NEGATIVE_INFINITY + "<br>" +"NaN : " + Number.NaN + "<br>"; </script> </body> </html>
Output
Max Value : 1.7976931348623157e+308 Min Value : 5e-324 Positive Infinity : Infinity Negative Infinity : -Infinity NaN : NaN
Example: Number Methods
In the example below, we have used some properties of Number. You can try edit the program to use more methods.
<html> <body> <div id="output"></div> <script> const num = 877.5312 document.getElementById("output").innerHTML = "num.toExponetial() is : " + num.toExponential()+ "<br>" +"num.toFixed() is : " + num.toFixed() + "<br>" +"num.toPrecision(2) is : " + num.toPrecision(2) + "<br>"; </script> </body> </html>
Output
num.toExponetial() is : 8.775312e+2 num.toFixed() is : 878 num.toPrecision(2) is : 8.8e+2
JavaScript Number() Function
The Number() function converts the variable into a number. You can use it to change the data type of the variable.
let num = Number(val)
Here val is a variable or value to convert into a number. It doesn't create a number object instead it returns a primitive value.
Example
We passed the integer and string value to the Number() function in the example below. In the output, the code prints the numeric values. The type of the num2 variable is a number, as the Number() function returns the primitive number value.
<html> <body> <p id = "output"> </p> <script> let num = Number(10); document.getElementById("output").innerHTML = "num = " + num + "<br>" + "typeof num = " + typeof num; </script> </body> </html>
Output
num = 10 typeof num = number
Example: Converting Numeric Strings to Numbers
We can use the Number() function to convert numeric strings to numbers. Try the following example −
<html> <body> <p id = "output"> </p> <script> let str = "102.34"; let num = Number(str); document.getElementById("output").innerHTML = "num = " + num + "<br>" + "typeof num = " + typeof num; </script> </body> </html>
Output
num = 102.34 typeof num = number
Try the above example with different numbers such as integers, floating point, octal, hexadecimal, etc.