ItSolutionStuff.com

How to Check If Key Exists in JSON Object using JQuery?

By Hardik Savani • July 4, 2023
Javascript jQuery JSON

When you require to check if key exists or not in json object in javascript. we can easily check jquery json object key exists or not using hasOwnProperty. jquery json provide several method for getting key value or check if key exists etc.

In this example we will use hasOwnProperty method of json object that will help to check if key exists or not in jquery.

if(myObject.hasOwnProperty('name')){

console.log('Key is exist in Object!');

}

hasOwnProperty return true if key is exists and return false if key is not exists on given javascript json. So let's see simple example that will help you how you can use.

Example:

<!DOCTYPE html>

<html>

<head>

<title>How to check if key exists in json object in jquery? - ItSolutionStuff.com</title>

</head>

<body>

<script type="text/javascript">

var myObject = {'id': 1, 'name': 'Paresh', 'city': 'Rajkot'};

if(myObject.hasOwnProperty('name')){

console.log('Key is exist in Object!');

}else{

console.log('Key is not exist in Object!');

}

</script>

</body>

</html>

I hope it can help you....

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

JQuery Open Link in New Window Example

Read Now →

How to Get Selected Radio Button Value in JQuery?

Read Now →

How to Split String to Array By Comma using JQuery?

Read Now →

How to Only Allow Numbers in a Text Box using jQuery?

Read Now →

How to Disable F5 Refresh Button using JQuery?

Read Now →

How to Disable Browser Back Button using JQuery?

Read Now →

JQuery Disable Right Click, Cut, Copy and Paste Example

Read Now →

JQuery Rotate Image Animation Example Code

Read Now →

How to Remove Empty or Null Values from Array in JQuery?

Read Now →

How to Remove Duplicate Object from Array in JQuery?

Read Now →

How to Remove Duplicate Value from Array in JQuery?

Read Now →

How to Remove All Spaces from String in JQuery?

Read Now →

How to Parse JSON in JQuery Ajax?

Read Now →