I'm having this collection of objects which are inside a html text area:
{"name":"John", "lname":"Doe","company":"example company","email":"johndoe@example.com"},{"name":"Katie","lname":"Jake","company":"example company","email":"katie@example.com"},
...
...
...
Is there a way to send the whole collection to node js and iterate through it to get values of objects?
My AJAX code:
  $.ajax({
    type: "POST",
    url: "https://example.com/nodeapp",
    data: '['+document.getElementById("list").value+']',
    success: function(data) {
      console.log(data);
    }
  });
I tried to do a foreach on req.body, but it doesn't seem to work:
var arr = req.body;
arr.foreach(element=>{
console.log(element.email);
})
Gives the error:
TypeError: arr.foreach is not a function
 
    