Hey guys.... am I missing something here ...
export const gte = (x, y) => {
if (x >= y) {
return `true`;
} else {
return `false`;
}
}
It outputs the correct values
false
true
true
But keep getting this
gte should return true if x is greater than or equal to y
gte should return false if x is less than y