the following array list I need to get all the price one by one. 
this returns the full json object console.log('File data:', jsonString); but the for loop never seems to get called , it never enters it.  I need to loop through a json file but its in different folder the json file is under menu folder called list.json menu-> projectName\menu\list.json the file looks like this
The data:
[
  {
    "code": "ZC",
    "price": "1"
  },
  {
    "code": "ZS",
    "price": "3"
  },
  {
    "code": "VC",
    "price": "4"
  },
...]
JS:
const jsonList = fs.readFile("../menu/list.json", "utf8", (err, jsonString) => {
  if (err) {
    console.log("File read failed:", err);
    return;
  }
  console.log("File data:", jsonString);
  console.log("File data:", jsonString.url);
  for (var key in jsonString) {
    if (jsonString.hasOwnProperty(key)) {
      console.log("===>", jsonString[key].price);
    }
    return jsonString;
  }
});
 
     
    