We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 162388d commit e668b04Copy full SHA for e668b04
implementations/every.js
@@ -16,7 +16,7 @@
16
17
If the predicate is not fulfilled then the method will exit early (and return false).
18
19
- Calling some on an empty array will return true.
+ Calling every on an empty array will return true.
20
*/
21
Array.prototype.myEvery = function myEvery(predicate, thisArg){
22
for(var i = 0 ; i < this.length ; ++i){
implementations/none.js
If the predicate is fulfilled then the method will exit early (and return false).
+ Calling none on an empty array will return true.
Array.prototype.myNone = function myNone(predicate, thisArg){
0 commit comments