can i check an object is instance of list in javascript code example
Example 1: instance of
The instanceof keyword checks whether an object
is an instance of a specific class or an interface.
The instanceof keyword compares the
instance with type. The return value
is either true or false .
Example 2: js class check if new instance
new Date() instanceof Date; // => true