标签: javascript casting type-conversion
jshint建议不要使用构造函数new Number()
但使用一个或另一个
var x = new Number("23");
或
var y = parseInt("42");