Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to do it? Simple JS .length returns undefined.

share|improve this question

1 Answer

up vote 2 down vote accepted

Try .get('length'); instead, because ManyArray is a bit more special. I just use .get('length'); all the time these days in Ember, so as to prevent problems like this, otherwise you just find yourself mixing .get('length'); and .length.

share|improve this answer
That's it! Thanks. Where can I read about DS objects and ember-data? – Nikita Feb 13 at 14:19
1  
Try the following guide, Nikita: emberjs.com/guides/models They're always updating it, so you have to keep a close eye on all of those pages :) – Wildhoney Feb 13 at 16:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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