JSON find the Last index of an object
You are Here:
JSON find the Last index of an object
In the following example, we will find the last index of an object in an array with a name property is equal to 'Danny'.
Example
HTML Editor
<!DOCTYPE html>
<html lang="en-US">
<body>
<h1>JSON findLastIndex</h1>
<button onclick="myFunction()">Click Me</button>
<script>
var data = [
{
"name": "Danny",
"age": 25
},
{
"name": "Mike",
"age": 25
},
{
"name": "Danny",
"age": 18
}
]
var myIndex = -1;
function myFunction(){
for(var i = 0; i < data.length; i++){
if (data[i].name == "Danny")
myIndex = i;
}
console.log(myIndex);
}
</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.