Making the data larger
by jessekinsman
JavaScript
for (let l = 0; l< 100; l+=1) {
people.forEach(function(item){
item.name = item.name + l;
peopleBig.push(item);
});
}
by jessekinsman
for (let l = 0; l< 100; l+=1) {
people.forEach(function(item){
item.name = item.name + l;
peopleBig.push(item);
});
}