const object = {id: 2, name: 'Tom', 'age': 25}; console.log(JSON.stringify(object, null, 4)); // beauty printing console.log(JSON.stringify(object)); ...
確定! 回上一頁