parseInt - 在Node环境中,使用radix

时间:2017-02-08 12:40:54

标签: javascript

我无法找到明确的答案,我们还需要使用radix(Node)吗?

# create a list of your matrices (named so the output looks nice)
pondABM = list(A = mPondA, B = mPondB)

# apply as.abucount to the list of matrices
pondABM2 = lapply(pondABM, as.abucount)

# run the iNEXT function
iNEXT(pondABM2, datatype="abundance")

VS

let number = parseInt('666');

1 个答案:

答案 0 :(得分:2)

将MDN格式化为parseInt

  

如果 radix undefined0(或缺席),则JavaScript假设如下:

     
      
  • 如果输入string"0x""0X"开头,则基数16(十六进制),其余部分为字符串被解析。

  •   
  • 如果输入string以“0”开头,则基数为八(八进制)或十进制(十进制)。究竟选择哪个基数是依赖于实现的。 ECMAScript 5指定使用10(十进制),但并非所有浏览器都支持此功能。 因此,在使用parseInt时始终指定基数。

  •   
  • 如果输入string以任何其他值开头,则基数为10(十进制)。

  •