About 49,400 results
Open links in new tab
  1. Number - JavaScript | MDN

    Number values represent floating-point numbers like 37 or -9.25. The Number constructor contains constants and methods for working with numbers. Values of other types can be converted to …

  2. JavaScript Number () Method - W3Schools

    Description The Number() method converts a value to a number. If the value cannot be converted, NaN is returned.

  3. What Is the Number Type in JavaScript, and What Are the Different …

    JavaScript's Number type includes various kinds of numeric values, ranging from simple integers and floating-point numbers to special cases like Infinity and NaN, or "Not a Number".

  4. JavaScript Numbers

    In this tutorial, you'll learn about the JavaScript Number types and how to use them effectively in your web apps.

  5. JavaScript Numbers - GeeksforGeeks

    Jul 11, 2025 · JavaScript numbers are primitive data types, and unlike other programming languages, you don't need to declare different numeric types like int, float, etc. JavaScript numbers are always …

  6. Numbers - The Modern JavaScript Tutorial

    Dec 18, 2024 · Regular numbers in JavaScript are stored in 64-bit format IEEE-754, also known as “double precision floating point numbers”. These are numbers that we’re using most of the time, and …

  7. JavaScript Number (with Examples) - Programiz

    In JavaScript, numbers are primitive data types used to represent numerical values. In this tutorial, you will learn about JavaScript numbers with the help of examples.

  8. JavaScript Numbers - W3Schools

    Unlike many other programming languages, JavaScript does not define different types of numbers, like integers, short, long, floating-point etc. JavaScript numbers are always stored as double precision …

  9. JavaScript Numbers - Tutorial Republic

    In this tutorial you will learn how to represent numbers in JavaScript. JavaScript supports both integer and floating-point numbers that can be represented in decimal, hexadecimal or octal notation. Unlike …

  10. JavaScript.com | Numbers

    Numbers are values that can be used in mathematical operations. You don’t need any special syntax for numbers — just write them straight into JavaScript. JavaScript doesn’t distinguish between whole …