From nodeJS (with Express) I try to send JSON_array in response to client JS:
asksJsonArray = JSON.parse(fs.readFileSync("tasks.json", 'utf-8'));
app.get('/getArr', function (req, res) {
    readJsonContent();
    res.json(JSON.stringify(TasksJsonArray)); //sending JSON array to client_JS in response
});
On client-side I want to get it, but nothing receive:
$.get('/getArr').success(function(res) {
  var currencyData = JSON.parse(res);
  if (!currencyData.rates) {
    // possibly handle error condition with unrecognized JSON response
    alert("currency data not found!");
  } else {
    taskArr = currencyData;
  }
})
So I always receive msg 'currency data not found!' ...
 
     
     
    