JSFiddle - React, Tailwind, and code Playground
by webwakko
JavaScript
var minsell = 10;
var sell = 55
if (sell % minsell == 0) {
// j is an exact multiple of 4
alert ('good to go');
} else {
alert('no good');
}
by webwakko
var minsell = 10;
var sell = 55
if (sell % minsell == 0) {
// j is an exact multiple of 4
alert ('good to go');
} else {
alert('no good');
}