最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - greater than condition with number and decimal - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

5 Answers 5

Reset to default 6

Don'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
发布评论

评论列表(0)

  1. 暂无评论