This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var obj = {foo: 4, bar: 7}; | |
| // returns an array of keys: [ 'foo', 'bar' ] | |
| Object.keys(obj); | |
| var arr = [3, 6, 9]; | |
| // returns a new array: [ 4, 7 ] | |
| arr.map(function(n) { return n + 1; }); | |
| // returns 9. AKA fold, inject, foldl. There's also reduceRight for foldr. | |
| arr.reduce(function(memo, val) { return memo + val; }); | |
| // prints each element of n, returning nothing | |
| arr.forEach(function(n) { console.log(n); }); | |
| // returns a subset of elements that match the predicate function | |
| arr.filter(function(n) { return n < 8; }); | |
| // returns true iff each element passes the predicate function | |
| arr.every(function(n) { return n % 3 == 0; }); | |
| // returns true if any element passes the predicate function | |
| arr.some(function(n) { return n > 4; }); |