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); });
|
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?
| ||||
|
feedback
|
|
I think there is nothing wrong with your solution. This is a shorter one:
| |||
|
feedback
|
|
Your method is fine, clear and readable. To do it without jQuery, use the
| |||
|
feedback
|