The instanceof operator is use to check the type of object
instanceof
Right way to find type of object is the following
var someObj = new Set; someObj instanceof Set; // True someObj instanceof Map; // Flase
Copyright © 2025 datapearls.org