Its the String representation of a Object.
If you open your Browser and hit F12, go to the console and type
console.log(""+{}) you get an Object {} converted to a string by joining it with another empty string.
Its the String representation of a Object.
If you open your Browser and hit F12, go to the console and type
console.log(""+{}) you get an Object {} converted to a string by joining it with another empty string.