Skip to main content

JavaScript check property exists

There are many way to detecting properties an Object in JavaScript, Such as: in and typeof operator, Comparing with undefined and hasOwnProperty() method. In this section we check exists properties by using in operator and hasOwnProperty() method.

Check javascript properties

Because in JavaScript properties can be added or delete at any time, it’s sometimes necessary to check whether a property exists in the object or not.

There are following way to detecting properties an Object in JavaScript:

  1. in operator.

  2. hasOwnProperty() method.

# using in operator

With the help of the "in" operator, you can check whether the property exists in the object.

Syntax :
  • 'propertyName' in objectName;

Let's create an simple example :

Example 1 : in operator;

  • In this code, we creates "book" object and uses the "in operator" to check if the "title" properties exist in the object.

  1. <script type="text/javascript">
  2. var book = {

  3.   title : "JavaScript",

  4. };

  5.  

  6. /* Here, checking a property exists or not */

  7. console.log('id' in book); // Output : false

  8. console.log('title' in book); // Output : true

  9. </script>

# using hasOwnProperty() method

The JavaScript object has a special hasOwnProperty () method to check whether it has its own property or is a global property of all JS objects.

Note : It returns a boolean value, true or false, that indicates whether object has a property or not.

Syntax :
  • object_name.hasOwnProperty('prop_name');

Let's create an simple example :

Example 2 : hasOwnProperty;

  • In this code, the hasOwnProperty() determines the presence of properties.

  1. <script type="text/javascript">
  2. var book = {

  3.   title : "JavaScript",

  4. };

  5.  

  6. /* Here, checking a property exists or not */

  7. book.hasOwnProperty('title'); // return : true

  8. book.hasOwnProperty('id'); // return : false

  9. </script>
Explanation :

 Example 2: explanation

    In above example

  • First, define the book object that contains one properties: title.

  • After that, check 'title' property exists or note:

  • The property 'title' exists in the object "book": thus book.hasOwnProperty('title') returns true.

  •  

  • On the other side, 'id' property doesn’t exist in the object "book". As expected, book.hasOwnProperty('id') returns false.

# Different between in and hasOwnProperty() for detecting properties

#

Method/operator

Description

1

in operator

The in operator/keyword checks for both 'own properties' and 'prototype properties'.

2

hasOwnProperty() method

The hasOwnProperty() method checks only own properties.

Let's try to create an simple example :

Example 3 : check a global property;

  • In this code, both hasOwnProperty() and in operator determines the presence of global properties.

  1. <script type="text/javascript">
  2. var book = {

  3.   title : "JavaScript",

  4. };

  5.  

  6. 'title' in book; // return : true

  7. book.hasOwnProperty('title'); // return : true

  8.  

  9. 'toString' in book; // return : true

  10. book.hasOwnProperty('toString'); // return : false

  11. </script>
Explanation :

 Example 3: explanation

    In above example, title is an own property of book.

  • So both the in operator and hasOwnProperty() method return true.

  • The toString() method, However is a prototype property that is present on all JavaScript objects().

  • The in operator returns true 'for toString()' method, but hasOwnProperty() returns false.

Comments

Popular Posts

Django static files not working when debug false || debug true

# Django static and media files not working when debug is false In this article you will learn how to fix problem of not loading static files and media in Django even the DEBUG is FALSE. This is the easiest and safest solution. # Problem: Django static and media files not working when debug is false  ➤ Code: settings.py DEBUG = False #True ALLOWED_HOSTS = [ '*' ] #Host name # Problem Fix: Let's see, How you can fix the problem of Django static and media files not working when DEBUB = False : 1.)First way: devserver in insecure mode If you still need to server static locally ( e.g. for testing without debug ) you can run devserver in insecure mode: python manage.py runserver --insecure --insecure: it means you can run serve...

How to remove the date and .html from every blogger post url

#Remove date and .html from blogger post url A Common search term which every blogger search is How to Remove Date From Blogger Post URL or how do I remove date from blogger permalink? Follow the steps below and then date and .html will be removed from the URL of your blogger post. Step 1 : Login to your Blogger blog and select Theme / Template. Step 2 : Click on Edit HTML and paste the below code just above the </head> tag let's see code :   ➤ Code : mycode.js; Copy code <script type='text/javascript' > //<![CDATA[ // BloggerJS v0.3.1 var urlTotal,nextPageToken,postsDatePrefix=!1,accessOnly=!1,useApiV3=!1,apiKey="",blogId="",postsOrPages=["pages","posts"],jsonIndex=1,secondRequest=!0,feedPriority=0,amp="&"[0];function urlVal(){var e=window.location.pathname,t=e.length;return...

How to remove ? m=1 or ?m=0 from blogger post URL

# Remove m=1 From URL of Blogger post A Common search term that every blogger search is How to ?m=1 or ?m=0 from blogger Post URL. We all know that "simplicity is beauty" and you want to clean permalink. So, in this article, I will guide you on how to remove ?m=1 from the blogger URL, and make a simple professional URL. Follow the few steps below and removed ?m=1 from the URL of your blogger post. Step 1 : First, you login into your blogger's dashboard and then select your blog. Step 2 : Click on the Theme option. Step 3 : Click on the customise Step 4 : Click on Edit HTML option. Step 5 : Press (CTRL + F) from the keyboard and type "/head" and then search. ( If you are not understanding, see the below photo ) Step 6 : Now paste the below code just above the </head> tag. let's see code :   ➤ Code : mycode.js; Copy code ...