Multiple choice How to write an IF statement for executing some code if "i" is NOT equal to 5? if (i != 5) if i <> 5 if i =! 5 then if (i <> 5) Reveal answer Fill a bubble to check yourself A Correct answer Explanation The '!=' operator is the standard comparison operator for 'not equal to' in JavaScript.