3

How may I create an if-statement in order to check if an integer ends with 0?

For example, I'd like to have an if-statement like this:

var test = 107; //107 is an example it'should some unknown number

if(test is xx1 - xx9){
  //do something
}
else if(test is xx0){
  //do something
}
Pang
  • 9,564
  • 146
  • 81
  • 122
Anson Aştepta
  • 1,125
  • 2
  • 14
  • 38

4 Answers4

7
if (test % 10) {
    // does not end with 0
} else {
    // ends with 0
}
Cameron Edwards
  • 198
  • 1
  • 6
5
      var test=107;
      var isEndsWithZero =test%10; 
      if(isEndsWithZero!==0)
      {
        //Ends With 1-9,Do something
        alert("Ends With 1 to 9");
      }
      else
      {
        //Ends With Zero ,Do something
        alert ("ends with zero");
      }

Example:

test=107;
isEndsWithZero=107%10 //7
Else part will get executed

JSFiddle Link :https://jsfiddle.net/nfzuaa44/

Venkat
  • 2,549
  • 2
  • 28
  • 61
4
if(/0$/.test(number)) {
  /* it ends in a 0 */
}
else {
  /* it doesn't */
}
William B
  • 1,411
  • 8
  • 10
4

//Use Modulus

var test1=110

if(test1 % 10 == 0){ }// Number Ends with a zero

Anirban Das
  • 107
  • 7