JSFiddle - React, Tailwind, and code Playground
by Alex Fogarty
JavaScript
var quarter = function(number){
return(number/4);
}
if (quarter(12) % 3 === 0 ) {
console.log("The statement is true");
} else {
console.log("The statement is false");
}