-3

I have an array of objects:

var data = [{"name":"albin"},{"name", "alvin"}];

How can I add an element to all the records?

I want to add "age":"18" to all the records:

[{"name":"albin", "age":"18"},{"name", "alvin", "age":"18"}];
Cerbrus
  • 65,559
  • 18
  • 128
  • 140
Alvin
  • 7,787
  • 23
  • 77
  • 164

2 Answers2

4

Use forEach to iterate through the through this json array & add a key age to each of the object

var data = [{
  "name": "albin"
}, {
  "name": "alvin"
}];

data.forEach(function(item) {
  item.age = 18
});

console.log(data);

Note: The json in the question is not valid

JSFIDDLE

Cerbrus
  • 65,559
  • 18
  • 128
  • 140
brk
  • 46,805
  • 5
  • 49
  • 71
0

var data = [{"name": "albin"}, {"name": "alvin"}];
for (var i = 0; i < data.length; i++) {
    data[i].age = "18";
}
Cerbrus
  • 65,559
  • 18
  • 128
  • 140