JavaScript 中使用parseInt()函数,输出结果错误的是:
A.parseInt("150cats");结果为:150
B.parseInt("cats");结果为:NaN
C.parseInt("-6");结果为:6
D.parseInt("6.56");结果为:6
正确答案是C