// Define quarter here.
var quarter= function (number){
return number/4;
};
//if i run this it works but it is not equal to 0 so why does it work? Im not sure i understand how the “===” works
if (quarter(24) % 3 === 0 ) {
console.log(“The statement is true”);
} else {
console.log(“The statement is false”);
}
var quarter=function(number)
{return number/4;};
if (quarter(24)%3===0)
{console.log(“The statement is true”)}
else {console.log(“The statement is false”)};
var quarter=function(number){
return number/4;
};
if (quarter(24)%3===0){
console.log (“The statement is true”);
}else{
console.log (“The statement is false”);
}