skip to Main Content

Html – Why won't this program display correctly?

I have this HTML page which is meant to display a to-do list and allow users to add tasks to it <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>To-Do List</title> <link rel="stylesheet" href="styles.css"> <script src="/todolist.js" defer></script> </head> <body> <a href="index.html">Homepage</a>…

VIEW QUESTION

Javascript – Taking specific values in a JSON file and make another JSON file with extracted

I have a JSON file that is taken from the data of the project. However, there are information in it that I do not need for my specific goal. This is the JSON data: const toSql = [ {"id":1,"battlerName":"Actor1_1","characterIndex":0,"characterName":"Actor1","classId":1,"equips":[2,0,0,3,0],"faceIndex":0,"faceName":"Actor1","traits":[{"code":51,"dataId":2,"value":1},{"code":51,"dataId":4,"value":1}],"initialLevel":1,"maxLevel":99,"name":"Reid","nickname":"","note":"","profile":""}, {"id":2,"battlerName":"Actor1_2","characterIndex":1,"characterName":"Actor1","classId":1,"equips":[1,0,0,9,0],"faceIndex":1,"faceName":"Actor1","traits":[],"initialLevel":1,"maxLevel":99,"name":"Priscilla","nickname":"","note":"","profile":""},…

VIEW QUESTION
Back To Top
Search