I am not sure what exactly this question is asking for. Just feeling confused. Please help!
function isInteger(num) {
}
/* Do not modify code below this line */
console.log(isInteger(1), '<-- should be true');
console.log(isInteger(1.5), '<-- should be false');
when you console log you should get true for the whole number and false for the decimal.