How to delete an array item from array values in JSON object in JavaScript

1 Answer

0 votes
const json =  {
    "name":"Leo",
    "age":45,
    "kids": [ "Abbie", "Ann", "Aaric" ]
} 

delete json.kids[1]; 

console.log(json);

for (let k in json.kids) {
    console.log(json.kids[k]);
} 
  

 
    
/*
run:
  
{ name: 'Leo', age: 45, kids: [ 'Abbie', <1 empty item>, 'Aaric' ] }
Abbie
Aaric
  
*/

 



answered Mar 21, 2020 by avibootz

Related questions

...