+1 vote
in JavaScript by

Which one of the following method or operator is used for identification of the array?

a) Typeof

b) ==

c) ===

d) isarrayType()

1 Answer

0 votes
by

Answer: D

Reason: In JavaScript, the "typeof" operator is used for knowing the data type of the specified operand that can be a data structure or literal like an object, method, and variable.

...