This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var person = { | |
firstName: 'Hoang', | |
lastName: 'Pham', | |
showName: function() { | |
console.log(this.firstName + ' ' + this.lastName); | |
} | |
}; | |
// Serialize sẽ làm mất method, chỉ giữ các property | |
JSON.stringify(person); // '{"firstName":"Hoang","lastName":"Pham"}' | |
var jsonString = '{"firstName":"Hoang","lastName":"Pham"}'; | |
var psn = JSON.parse(jsonString); // Chuyển string thành object | |
console.log(psn.firstName); // Hoang | |
console.log(psn.lastName); // Pham |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment