Still confused about functions and conditionals

quarter = function (number){
return number/4
};
quarter = function (96)
if (quarter % 3 ===)
console.log(“The statement is true”);
} else {
console.log(“The statement is false”);
}

I’m not understanding something. I want javascript to take 96 and then divide by 4 and then do the conditions. It says problems with your syntax though I don’t know what problem its referring to.

can you provide the exercise url?