Skip to content

Instantly share code, notes, and snippets.

@deleteman
Last active March 28, 2019 02:18
Show Gist options
  • Save deleteman/39bd808cd2481121975e05e0088bc29a to your computer and use it in GitHub Desktop.
Save deleteman/39bd808cd2481121975e05e0088bc29a to your computer and use it in GitHub Desktop.
stringify-serializer
let testObj = {
name: "Fernando",
age: 35,
speak: function() {
console.log("Hello world!")
},
address: undefined
}
let serializedObj = JSON.stringify(testObj)
testObj.speak()
console.log(serializedObj)
console.log(typeof serializedObj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment