admin管理员组文章数量:1340291
I have a condition that will check if a number is greater than 50,000, if so we show an alert. This works fine, but if you input this 50,000.99 it doesn't trigger the alert, but 51,000.00 does. How do I use a conditional correctly here?
here is my code:
if (parseInt(newValue) > 50000.00) {
toastr.info('Number can not be more than $50000.00');
// do something
} else {
// do something
}
I have a condition that will check if a number is greater than 50,000, if so we show an alert. This works fine, but if you input this 50,000.99 it doesn't trigger the alert, but 51,000.00 does. How do I use a conditional correctly here?
here is my code:
if (parseInt(newValue) > 50000.00) {
toastr.info('Number can not be more than $50000.00');
// do something
} else {
// do something
}
Share
Improve this question
asked Mar 7, 2015 at 0:26
jmcmasjmcmas
5673 gold badges12 silver badges31 bronze badges
1
-
if ( newValue > 50000)
works fine – dandavis Commented Mar 7, 2015 at 0:40
5 Answers
Reset to default 6Don't use parseInt
to parse decimal numbers:
- :( It truncates your numbers
- :( It's unreliable unless you specify a radix
- :( It's slow
- :( It parses non numeric strings if they begin with a number
Instead, you could use parseFloat
. But wait:
- :) It does not truncate your numbers
- :) There is no radix problem
- :( It's slow
- :( It parses non numeric strings if they begin with a number
There is a better approach: the unary +
operator:
- :) It does not truncate your numbers
- :) There is no radix problem
- :) It's so fast
- :) It does not parse non pletely numeric strings
But wait: when you use the greater-than Operator >
, the operands are automatically converted to numbers (unless both are strings).
So just use
newValue > 50000
Don't use parsint. It converts your string/number to an integer, effectively lopping off the decimal.
Use parseFloat:
if (parseFloat(newValue) > 50000.00) {
toastr.info('Number can not be more than $50000.00');
// do something
} else {
// do something
}
The parseFloat() function parses a string argument and returns a floating point number.
Use parseFloat
, not parseInt
, if you want a number with a fraction. Integers don't have fractions. Real numbers have fractions, and they're represented in puter programs as floating point.
Use parseFloat instead of parseInt when working with decimal values.
parseInt("234")//234
parseInt("234.551")//234
parseInt(".234")//NaN
parseFloat("234")//234
parseFloat("234.551")//234.551
parseFloat(".234")//0.234
+("234")//234
+("234.551")//234.551
+(".234")//0.234
本文标签: javascriptgreater than condition with number and decimalStack Overflow
版权声明:本文标题:javascript - greater than condition with number and decimal - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743629683a2512896.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论