0

I have a LinkedList object I created. In the debugger (for javascript/typescript) I want it to display as an array to make it easy to go view any element. Is there a way to do this in IE, Chrome, Firefox, or Opera?

David Thielen
  • 28,723
  • 34
  • 119
  • 193

1 Answers1

0

you can make something like this:

var array = $.map(myObj, function(value, index) {
return [value];
});

This way you can set up your object as an array.