检测NodeJS中的数字是否类似于100、200、600

时间:2019-02-26 14:40:41

标签: node.js numbers

我想检测一个数字是100、200、600还是1000。[所以是100]。

我不想检测某物的倍增。我只想看看它是否以2个零结尾。

我该怎么做?

亲切的问候,

Stijn

1 个答案:

答案 0 :(得分:1)

您可以检查除以100的提醒,如果为0,则数字以00结尾,如下所示:

console.log(1 % 100 == 0); // false
console.log(100 % 100 == 0); // true
console.log(101 % 100 == 0); // false
console.log(200 % 100 == 0); // true
console.log(1000 % 100 == 0); // true