turn object into string javascript
var obj = {a: "a", b: "b" /*...*/};
var string = JSON.stringify(obj);
// OUTPUT:
// "{'a':'a', 'b':'b'}"
turn object into string javascript
var obj = {a: "a", b: "b" /*...*/};
var string = JSON.stringify(obj);
// OUTPUT:
// "{'a':'a', 'b':'b'}"
js print object as json
var obj = {
a: 1,
b: 2,
c: { d: 3, e: 4 } // object in object
};
// method 1 - simple output
console.log(JSON.stringify(obj)); // {"a":1,"b":2,"c":{"d":3,"e":4}}
// method 2 - more readable output
console.log(JSON.stringify(obj, null, 2)); // 2 - indent spaces. Output below
/*
{
"a": 1,
"b": 2,
"c": {
"d": 3,
"e": 4
}
}
*/
javascript stringify an object
console.log(JSON.stringify({ x: 5, y: 6 }));
// expected output: "{"x":5,"y":6}"
console.log(JSON.stringify([new Number(3), new String('false'), new Boolean(false)]));
// expected output: "[3,"false",false]"
console.log(JSON.stringify({ x: [10, undefined, function(){}, Symbol('')] }));
// expected output: "{"x":[10,null,null,null]}"
console.log(JSON.stringify(new Date(2006, 0, 2, 15, 4, 5)));
// expected output: ""2006-01-02T15:04:05.000Z""
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us