Answers for ".json method javascript"

41

javascript json string

var person={"first_name":"Tony","last_name":"Hawk","age":31};
var personJSONString=JSON.stringify(person);
Posted by: Guest on July-23-2019
1

use of .json() in javascript

fetch('http://example.com/movies.json')
  .then(response => response.json())
  .then(data => console.log(data));
//Since the HTTP response is not a JSON Object, 
//.json() extracts the JSON Object from the HTTP response
Posted by: Guest on June-25-2021
-1

create a javascript json object

const student = {
  name: "bob",
  age: 7,
  grade: 6
}
Posted by: Guest on November-03-2020

Code answers related to ".json method javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language