convert string to object js code example
Example 1: turn object into string javascript
var obj = {a: "a", b: "b" };
var string = JSON.stringify(obj);
Example 2: convert string to object javascript
var mystr = '{ "hello":"world" }'
var myobj = JSON.parse(mystr);
Example 3: 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"}');
Example 4: js string to object
JSON.parse()
Example 5: convert string to object javascript
str = "firstName:name1, lastName:last1";
obj = eval('({' + str + '})');