I have a JSON file containing this text:
[
{
"key" : "test1",
"desc": "desc1"
},
{
"key" : "test2",
"desc": "desc2"
},
]
I made a code to read the content of this file (using AJAX) and to display the content into an HTML table.
Now, i would like to be able to update a value in my HTML array and save the modification into the JSON file.
Is it possible in JavaScript?