Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chapters/arrays/testing-every-element.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ evens.every (x)-> x % 2 == 0

Array.every was addded to Mozilla's Javascript 1.6 and made standard with EcmaScript 5. If you to support browsers that do not implement EC5 then check out [`_.all` from underscore.js][underscore].

For a real world example, prentend you have a multiple select list that looks like:
For a real world example, pretend you have a multiple select list that looks like:

{% highlight html %}
<select multiple id="my-select-list">
Expand Down