Friday 19 January 2018

javascript - Converting an object to a string

How can I convert a JavaScript object into a
string?



Example:



var
o = {a:1, b:2}
console.log(o)
console.log('Item: ' +
o)


Output:





Object { a=1, b=2} // very nice readable output :)
Item: [object
Object] // no idea what's inside
:(


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...