create object from string js code example
Example 1: turn object into string javascript
var obj = {a: "a", b: "b" /*...*/};
var string = JSON.stringify(obj);
// OUTPUT:
// "{'a':'a', 'b':'b'}"
Example 2: js string to object
JSON.parse()
Example 3: javascript construct new object
person = new Object();