Is there a quick way to switch from the jsx code shown in Chrome DevTools to the raw ES5 and back again?
Open Developer Tools, go to "Settings" for Developer Tools, then uncheck Enable JavaScript Sourcemaps under the "Sources" settings.
Enable JavaScript Sourcemaps
When using Google Chrome, I want to debug some JavaScript code. How can I do that?
Can Chrome's built-in JavaScript console display colors? I want errors in red, warnings in orange and console.log's in green. Is that possible?
In Firebug, the DOM tab shows a list of all your public variables and objects. In Chrome's console you have to type the name of the public variable or object you want to explore. Is there a way - or …