How can I create debug variables in IE11 developer tools console like in Chrome, for example?
I have tried
1) a = new String("latex");
2) var a = new String("latex");
For the first one I got a Variable undefined in strict mode
For the second one I got undefined and whenever I try to access variable "a" I get the error 'a' is undefined
Did you try to access the variable in the same frame context it has been defined in? In the Console tab/area ... there is a dropdown field in the upper right corner (right to the log level filter and the clear log button). Variables/Objects only live in the frame context they have been created in. Also, when you created the debug variable while a debugger breakpoint was active, you created that variable in the current scope.