Which is the use of typeof operator in JavaScript?
function() { var a = 10; if(a > 5) { a = 7; } alert(a); }
Its value is a string indicating the data type of the operand.
The typeof is a unary operator. It should occur before the single operand, which can be of any type.
Both of the above.
None
QuizBucket
© 2017 QuizBucket.org