var obj = {name: 'John', age: 20} // to json var json = JSON.stringify(obj); //json to object var obj1 = JSON.parse(json);