Answers for "how to get json data in javascript"

5

convert data into json format in javascript

Use the JavaScript function JSON.parse() to convert text into a JavaScript object:
var obj = JSON.parse('{ "name":"John", "age":30, "city":"New York"}');
Posted by: Guest on June-07-2020
0

how to show json data in javascript

fetch('people.json')
  .then(function (response) {
    return response.json();
  })
  .then(function (data) {
    appendData(data);
  })
  .catch(function (err) {
    console.log(err);
  });
Posted by: Guest on August-19-2021

Code answers related to "how to get json data in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language