I have a JSON file that I want to update whenever user wants to add a new Object to the file. I am using plain HTML and javascript and jquery. Is there a javascript/jquery function/ method that will allow me to be able to append a new JSON object in the external json file?
Below is the structure of my JSON file.
[{
"Links": [{
"url": "https://www.google.com",
"Name": "Google"
}],
"Name": "Google Page"
}, {
"Links": [{
"url": "https://www.facebook.com",
"Name": "Facebook"
}],
"Name": "Facebook Page"
}]