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

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...

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...

Django not able to find static files[Solved]

# Django static files not working In this article, you will learn how to fix the problem of not loading static files. This is the easiest and safest solution. In the new version of Django 3.1 and above the settings.py file uses PATH instead of OS to deal with the directory structure. So all the code, we wrote for our static dirs and things like that will no longer work unless we import os at the top of our settings.py file.. Note : This article related to DEBUG = True , if you have problems with DEBUG = False then you can follow this article; Static files not working when DEGUB= False . Have fun! Let's follow a few steps and, solve the problem of not loading Django static files: Step 1 : Check that "BASE_DIR" is defined in your project settings.py , if not then define it  ➤ Code: settings.py import os BASE_DIR = ...