JSFiddle - React, Tailwind, and code Playground
JavaScript
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");
}