I used a literal as a dictionary, but a third party binding tool only takes arrays.

This is one way, is there a better one?

var arr = [];
$.each(objectLiteral, function () { arr.push(this); });
link|improve this question

68% accept rate
feedback

2 Answers

up vote 2 down vote accepted

I think there is nothing wrong with your solution.

This is a shorter one:

var arr = $.map(objectLiteral, function (value) { return value; });
link|improve this answer
feedback

Your method is fine, clear and readable. To do it without jQuery, use the for (..in..) syntax:

var arr = [];
for (prop in objectLiteral) {
  arr.push(objectLiteral[prop]);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.