About 11,400,000 results
Open links in new tab
  1. How can I convert a string to an integer in JavaScript?

    There are two main ways to convert a string to a number in JavaScript. One way is to parse it and the other way is to change its type to a Number. All of the tricks in the other answers (e.g., unary plus) …

  2. How to format numbers as currency strings? - Stack Overflow

    This Stack Overflow thread discusses methods to format numbers as currency strings in various programming languages.

  3. Number of bits in Javascript numbers - Stack Overflow

    May 10, 2010 · All numbers in JavaScript are actually IEEE-754 compliant floating-point doubles. These have a 53-bit mantissa which should mean that any integer value with a magnitude of approximately …

  4. javascript - How can I check if a string is a valid number? - Stack ...

    To check if a variable (including a string) is a number, check if it is not a number: This works regardless of whether the variable content is a string or number.

  5. Generating random whole numbers in JavaScript in a specific range

    Oct 7, 2009 · How can I generate random whole numbers between two specified variables in JavaScript, e.g. x = 4 and y = 8 would output any of 4, 5, 6, 7, 8?

  6. Validate decimal numbers in JavaScript - IsNumeric ()

    Aug 20, 2008 · What's the cleanest, most effective way to validate decimal numbers in JavaScript? Bonus points for: Clarity. Solution should be clean and simple. Cross-platform. Test cases: 01. …

  7. JavaScript math, round to two decimal places - Stack Overflow

    I have the following JavaScript syntax: var discount = Math.round(100 - (price / listprice) * 100); This rounds up to the whole number. How can I return the result with two decimal places?

  8. javascript - How do I check that a number is float or integer? - Stack ...

    Oct 8, 2010 · Provides solutions for determining if a number is a float or integer in programming.

  9. What is JavaScript's highest integer value that a number can go to ...

    Nov 21, 2008 · JavaScript has two number types: Number and BigInt. The most frequently-used number type, Number, is a 64-bit floating point IEEE 754 number. The largest exact integral value of this type …

  10. javascript - What is the difference between parseInt () and Number ...

    How do parseInt() and Number() behave differently when converting strings to numbers?