Programming (Year 12)
Control Structures
Which of the following is NOT a valid conditional statement in JavaScript?
if (x > y) {}
if x > y:
if (x == y) {}
if (x != y) {}
Next