Javascript中是否有任何函数可以让你进行整数除法,我的意思是在int中得到除法答案,而不是浮点数。
var x = 455/10;
// Now x is 45.5
// Expected x to be 45
但我希望x为45.我正在尝试从数字中消除最后一位数字。
答案 0 :(得分:174)
var answer = Math.floor(x)
我真诚地希望这会在搜索这个常见问题时帮助未来的搜索者。
答案 1 :(得分:22)
var x = parseInt(455/10);
parseInt()函数解析一个字符串并返回一个整数。
radix参数用于指定要使用的数字系统 例如,使用16(十六进制)的基数表示 字符串中的数字应该从十六进制数解析为a 十进制数。
如果省略radix参数,则JavaScript假定以下内容:
If the string begins with "0x", the radix is 16 (hexadecimal) If the string begins with "0", the radix is 8 (octal). This feature is deprecated If the string begins with any other value, the radix is 10 (decimal)