const jsonArray = '[{"name":"John"},{"name":"Jane"}]';

const users = JSON.parse(jsonArray);
users.forEach(user => {
  console.log(user.name);
});
// خروجی:
// John
// Jane