About 36,300 results
Open links in new tab
  1. parseInt () - JavaScript - MDN

    Jul 8, 2025 · The parseInt() function parses a string argument and returns an integer of the specified radix (the base in mathematical …

  2. JavaScript parseInt () Method - W3Schools

    Description The parseInt method parses a value as a string and returns the first integer. A radix parameter specifies the number …

  3. JavaScript parseInt () Function - W3Schools

    The parseInt () function parses a string and returns an integer. The radix parameter is used to specify which numeral system to be …

  4. Number.parseInt () - JavaScript - MDN

    Jul 10, 2025 · The Number.parseInt() static method parses a string argument and returns an integer of the specified radix or base.

  5. Java - parseInt () Method - Online Tutorials Library

    parseInt (int i) − This returns an integer, given a string representation of decimal, binary, octal, or hexadecimal (radix equals 10, 2, 8, …

  6. What is the difference between parseInt () and Number ()?

    If the parseInt () function encounters a non numerical value, it will cut off the rest of input string and only parse the part until the non …

  7. parseInt () | JSGuides

    Jun 2, 2026 · parseInt() parses a string in a specified radix and returns an integer, handling whitespace, non-numeric suffixes, and …

  8. JavaScript Number parseInt () Method - GeeksforGeeks

    Feb 6, 2026 · The parseInt () method parses a value by converting it to a string and returns the first integer found. It also accepts an …

  9. parseInt () - Explained with Examples - KeyCDN Support

    Mar 15, 2020 · JavaScript's parseInt() function is used to parse a string and return an integer. Learn more about how to use it with …

  10. Integer.valueOf () vs Integer.parseInt () with Examples

    May 27, 2026 · When working with Strings in Java, we often need to convert numeric text into integer values. The Integer class …