Hello chxxangie, First of all in your if conditions, you are not comparing variables 'a' and 'b' rather you are assigning them values as '1'. so the modified code will be.. // compare just values OR if (a==1 AND b==1) if (a==1 && b==1) // compare value and type both if (a===1 AND b===1) if (a===1 && b===1) Both will give the same results.