#Chrome Devtools annoyingly doesn't show column numbers in error stack traces, needed for debugging errors in minified JS files. They're only available through the Error object's `stack` property, which the console doesn't even give access to unless you use some error event.
Conversation
Firefox does show the column number from the throw point it seems, but not in the stack trace, but it does let you store the error in a variable, which is nice. Better than Chrome at least!
1
Replying to
i've found that firefox's debugging tools are much better than chrome's.. too bad that firefox is still behind on some of the stuff outside of the spec that chrome adds
1

