16.
Which of the following symbols represents the greater than or equal to operator in JavaScript?
=
<=
>=
>
Correct: C
The >= symbol represents the greater than or equal to operator in JavaScript. It checks if the left value is greater than or equal to the right value. The = symbol is the assignment operator and is used to assign a value to a variable. The <= symbol represents the less than or equal to operator, and the > symbol represents the greater than operator.