Skip to content

Instantly share code, notes, and snippets.

@munkhorgil
Created April 16, 2020 07:57
Show Gist options
  • Save munkhorgil/9b9a127eaa8f1e70b332b67d274d5472 to your computer and use it in GitHub Desktop.
Save munkhorgil/9b9a127eaa8f1e70b332b67d274d5472 to your computer and use it in GitHub Desktop.
JSON.parse() wrap object
const obj = {
toString() {
return "[1,2,3]";
}
};
console.log(JSON.parse(obj));
// (3) [1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment