person = { 'name':'john smith' 'age':41 }; console.log(person); //this will return [object Object] //use console.log(JSON.stringify(person)); //instead.
確定! 回上一頁