Skip to content
Announcing the new Pro Zone. Check it out!

Number() in JavaScript – How to Convert Values to Numbers

Whenever you invoke Number(), the method converts its argument to a number.

JavaScript Number() global method's
tidbit

Use JavaScript’s Number() method to convert a value to a Number type or NaN.

Syntax of the Number() Method

Number() accepts only one argument. Here is the syntax:

Number(value);

Example 1: Convert String Number to Number Type

Number("578");
// The invocation above will return: 578

Try Editing It

Example 2: Convert String Text to Number Type

Number("Pink");
// The invocation above will return: NaN

Try it on CodePen

Example 3: Convert true to Number Type

Number(true);
// The invocation above will return: 1

Try Editing It

Example 4: Convert false to Number Type

Number(false);
// The invocation above will return: 0

Try Editing It

Example 5: Convert Date to Number Type

Number(new Date(2022, 06, 01));
// The invocation above will return: 1656630000000

Try Editing It