JSON Delete Specific Objects

You are Here:

JSON Delete Specific Objects

In the following example, we will delete all objects where the name property of an object matches 'Mike'.

Example

HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <h1>JSON Delete Specific Objects</h1> <p>Delete objects where name is 'Mike'.</p> <button onclick="myFunction()">Click Me</button> <script> var data = [ { "name": "Danny", "age": 25 }, { "name": "Mike", "age": 25 }, { "name": "Mike", "age": 18 } ] function myFunction(){ for(var i = 0; i < data.length; i++){ if (data[i].name == "Mike"){ data.splice(i, 1); i -= 1; } } console.log(data); } </script> </body> </html>

Reminder

Hi Developers, we almost covered 100% of JSON Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JSON.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author