Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 674705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T00:44:11+00:00 2026-05-14T00:44:11+00:00

The instanceof keyword in JavaScript can be quite confusing when it is first encountered,

  • 0

The instanceof keyword in JavaScript can be quite confusing when it is first encountered, as people tend to think that JavaScript is not an object-oriented programming language.

  • What is it?
  • What problems does it solve?
  • When is it appropriate and when not?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T00:44:12+00:00Added an answer on May 14, 2026 at 12:44 am

    instanceof

    The Left Hand Side (LHS) operand is the actual object being tested to the Right Hand Side (RHS) operand which is the actual constructor of a class. The basic definition is:

    Checks the current object and returns true if the object is of the specified object type.

    Here are some good examples and here is an example taken directly from Mozilla’s developer site:

    var color1 = new String("green");
    color1 instanceof String; // returns true
    var color2 = "coral"; //no type specified
    color2 instanceof String; // returns false (color2 is not a String object)
    

    One thing worth mentioning is instanceof evaluates to true if the object inherits from the class’s prototype:

    var p = new Person("Jon");
    p instanceof Person
    

    That is p instanceof Person is true since p inherits from Person.prototype.

    Per the OP’s request

    I’ve added a small example with some sample code and an explanation.

    When you declare a variable you give it a specific type.

    For instance:

    int i;
    float f;
    Customer c;
    

    The above show you some variables, namely i, f, and c. The types are integer, float and a user defined Customer data type. Types such as the above could be for any language, not just JavaScript. However, with JavaScript when you declare a variable you don’t explicitly define a type, var x, x could be a number / string / a user defined data type. So what instanceof does is it checks the object to see if it is of the type specified so from above taking the Customer object we could do:

    var c = new Customer();
    c instanceof Customer; //Returns true as c is just a customer
    c instanceof String; //Returns false as c is not a string, it's a customer silly!
    

    Above we’ve seen that c was declared with the type Customer. We’ve new’d it and checked whether it is of type Customer or not. Sure is, it returns true. Then still using the Customer object we check if it is a String. Nope, definitely not a String we newed a Customer object not a String object. In this case, it returns false.

    It really is that simple!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is using the instanceof keyword against the essence of object oriented programming ? I
When you have an object instance in C#, you can use the this keyword
Consider Object obj = ....; System.out.println(obj instanceof Object); What should obj be so that
In java we can use instanceOf keyword to check the isA relationship. But is
This is not the first time I've encountered a problem while using htmlParse in
The following compiles fine: Object o = new Object(); System.out.println(o instanceof Cloneable); But this
Why doesn't this code compile? public boolean isOf(Class clazz, Object obj){ if(obj instanceof clazz){
How do i test that an object is an instance of a particular class
What are the exact circumstances for which a return statement in Javascript can return
I'm getting reference to an object was not set for an instance of the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.