Skip to content

Instantly share code, notes, and snippets.

@lmzach09
Last active July 27, 2019 04:15
Show Gist options
  • Save lmzach09/ae57f472db85125f316991751821e22d to your computer and use it in GitHub Desktop.
Save lmzach09/ae57f472db85125f316991751821e22d to your computer and use it in GitHub Desktop.
Object To String Fail with toString
let obj = { "key": "value" };
let myString = obj.toString();
console.log(myString);
// '[object Object]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment