Skip to content

Instantly share code, notes, and snippets.

@danott
Created January 15, 2014 00:04
Show Gist options
  • Save danott/8428417 to your computer and use it in GitHub Desktop.
Save danott/8428417 to your computer and use it in GitHub Desktop.
TIL: Always include length when using @batmanjs accessors. Fixes some random bugs.
# BAD
@get('accessorToManyObjects').length
# GOOD
@get('accessorToManyObjects.length')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment