Answers for "javascript create object from json"

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
6

create a json object in javascript

var employee = {
  "firstName": firstName,
  "lastName": lastName
}
Posted by: Guest on April-28-2020
1

js create json from object

JSON.stringify(the_data);
Posted by: Guest on December-18-2020
-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 "javascript create object from json"

Code answers related to "Javascript"

Browse Popular Code Answers by Language