Closed pmarcinkiew closed 6 years ago
In the case of console.log({ a: '123', b: 123, c: [1, 2, 3]});, the printed log is like the following:
console.log({ a: '123', b: 123, c: [1, 2, 3]});
Current: [object Object]
This patch: {"a":"123","b":123,"c":[1,2,3]}
IoT.js-DCO-1.0-Signed-off-by: Daeyeon Jeong daeyeon.jeong@samsung.com
In the case of
console.log({ a: '123', b: 123, c: [1, 2, 3]});
, the printed log is like the following:Current: [object Object]
This patch: {"a":"123","b":123,"c":[1,2,3]}
IoT.js-DCO-1.0-Signed-off-by: Daeyeon Jeong daeyeon.jeong@samsung.com