parseint method code example

Example 1: Javascript string to int

var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256

Example 2: parseint javascript

var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256

Example 3: parseints(str) java

int decimalExample = Integer.parseInt("20"); 
        int signedPositiveExample = Integer.parseInt("+20"); 
        int signedNegativeExample = Integer.parseInt("-20"); 
        int radixExample = Integer.parseInt("20",16); 
        int stringExample = Integer.parseInt("geeks",29); 
  
        // Uncomment the following code to check 
        // NumberFormatException 
  
        //   String invalidArguments = ""; 
        //   int emptyString = Integer.parseInt(invalidArguments); 
        //   int outOfRangeOfInteger = Integer.parseInt("geeksforgeeks",29); 
        //   int domainOfNumberSystem = Integer.parseInt("geeks",28); 
  
        System.out.println(decimalExample); 
        System.out.println(signedPositiveExample); 
        System.out.println(signedNegativeExample); 
        System.out.println(radixExample); 
        System.out.println(stringExample); 

Output:

20
20
-20
32
11670324

Example 4: parseint method

parseInt("10");         // returns 10

parseInt("10.33");      // returns 10

parseInt("10 20 30");   // returns 10

parseInt("10 years");   // returns 10
parseInt("years 10");   // returns NaN

Example 5: javascript pareseint

parseInt(string, radix);

console.log(parseInt(' 0xF', 16));
// expected output: 1500

console.log(parseInt('321', 2));
// expected output: 0

console.log(parseInt('321', 10));
// expected output: 321

/* 
 * @param string Required. The value to parse. If this argument is not
 * a string, then it is converted to one using the ToString abstract
 * operation. Leading whitespace in this argument is ignored.
 *
 * radix
 * @param radix Optional. An integer between 2 and 36 that represents
 * the radix (the base in mathematical numeral systems) of the string.
 * Be careful—this does not default to 10!
 * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt#Description
 * for what happens when radix is not provided
 */