📜  Lodash _.parseInt() 方法

📅  最后修改于: 2022-05-13 01:56:51.798000             🧑  作者: Mango

Lodash _.parseInt() 方法

_.parseInt()方法用于解析字符串参数并返回指定基数的整数。

句法:

_.parseInt( string, [radix = 10] )

参数:此方法接受上面提到的两个参数,如下所述:

  • 字符串:此参数保存要转换的字符串。
  • radix:此参数保存要解释值的基数(此值默认为 10)。

返回值:此方法返回转换后的整数。

下面的示例说明了 JavaScript 中的 Lodash _.parseInt() 方法:

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
  
// Use of _.parseInt() method 
console.log(_.parseInt("10.33")); 
console.log(_.parseInt("8", 8));
console.log(_.parseInt("100", 10));


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
      
// Use of _.parseInt() method 
console.log(_.parseInt("0x10")); 
console.log(_.parseInt("10 year of gfg"));


输出:

10
NaN
100

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Use of _.parseInt() method 
console.log(_.parseInt("0x10")); 
console.log(_.parseInt("10 year of gfg"));

输出:

16
10