One minute
Best ways to debug Javascript
👴 Careful You’re reading an old article ! Some links might be broken and content may be outdated
I was looking for an equivalent of PHP’s print_r to debug Javascript Objects and I found this very cool method:
JSON.stringify(whatever_obj);
How about you ? How do you debug objects in Javascript ?
Read other posts