Conversation

#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.
Image
Image
1
1
Replying to and
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