1. Create this file structure
|- monday/
  |- outer.js
  |- layer1/
    |- index.js
  |- layer2/
    |- index.js
    |- data.js
  |- layer3/
    |- index.js

In reality, we will not commonly embeded data into our js file like the previous exercise.

We would store our data in a separated .json file and import it as needed. This would help other module able to access to the one database , one source of truth.

When reading data from a .json file the content should first be parse to a javacript object prior to further javascript operation.

JSON.parse();

Vice versa , to write to a .json file, a javascript object must first be transformed into a JSON string prior to save.

JSON.stringify();
"data":{
  "name":"abc"
}
data: {
  name: "abc";
}
... require("fs")
... fs.read... or fs.readSync...
... callBack???
... const data =  ...? JSON.parse() ???