I have trouble solving Task 120, can anyone help me? Thanks.
fazalz it'd be great if you could post your code and submission results. Otherwise it's hard to guess which part of the task gives you trouble.
Coderslang_Master
export const findMax = (x, y) => { if (x > y) { return x; } };
fazalz in the case where x is equal to y, your code will return undefined. Same if y is greater than x. Fix it!
x
y
undefined