Load all existing .JSON files into HTML page with JavaScript using fetch()
I have /mysite/index.html Then I have a folder /mysite/products/ with JSON files as following: /mysite/products/1.json /mysite/products/2.json /mysite/products/3.json ... /mysite/products/578.json and etc... Every JSON file looks like this: [{"id":1,"name":"16' Tire Japan","stock":145}] In my HTML I have a table: <table> <thead> <th>id</th>…