Visual Studio 2010 shows '{...}' in the debugger as the value for a Javascript variable. The type is object. How can I view the contents of the variable? There's no expansion icon.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Probably the object variable has no properties. Any object which has no properties will show the value as "{...}" |
|||
|
|
You could check in in code with the following:
See it at this fiddle: http://jsfiddle.net/uG6H6/ |
|||
|
|
|
A function was assigned to the variable. Visual Studio doesn't seem to show anything when a function is assigned to a variable.. There's more information in Firebug. |
|||
|
|