Used on arrays of arrays (2D arrays). Returns true if all elements in the nested array pass the test implemented by the provided function. Example usage:
[[1,2,3], [2,4], [4,8]].filter(everyElement(isEven)); Copy
[[1,2,3], [2,4], [4,8]].filter(everyElement(isEven));
Used on arrays of arrays (2D arrays). Returns true if all elements in the nested array pass the test implemented by the provided function. Example usage: