(54/60) A developer wants to iterate through an array of objects and count the objects and countthe objects whose property value, name, starts with the letter N.Const arrObj = [{"name" : "Zach"} , {"name" : "Kate"},{"name" : "Alise"},{"name" : "Bob"},{"..
const arrObj = [ {"name" : "Zach"}, {"name" : "Kate"}, {"name" : "Alise"}, {"name" : "Bob"}, {"name" : "Natham"}, {"name" : "nathaniel"} ]; let val; arrObj.reduce((acc, curr) => { //missing line 02 console.log("acc : " + JSON.stringify(acc)); console.log("curr : " + JSON.stringify(curr)); const sum = curr.name.startsWith('N') ? 1: 0; //missing line 03 val = acc + sum; //return acc + sum; //retur..