I have the following json file which is generated as a result of some python code . (I basically transfer a dict into a json file)
{"workers dwell time": [{"Arham": 0.0}, {"Fayyaz Bhai": 3.28}, {"Khan sahab": 2.14}, {"Osama": 0.0}, {"Yasir (paadri)": 0.0}]}
The json file is named as workers_dwell_time_final.json
I want to import this file into javascript. And assign the names to the respective times in table.
Mainly i want to know how to import the json file into javascript ?