1. 5
    Map and Flatten Multidimensional Arrays with ES2019 Array.prototype.flatMap
    2m 24s

Map and Flatten Multidimensional Arrays with ES2019 Array.prototype.flatMap

InstructorMike Sherov

Share this video with your friends

Send Tweet

ES2019 introduces the Array.prototype.flatMap method. In this lesson, we'll map and flatten a multidimensional array using Array.prototype.map, Array.prototype.reduce and Array.prototype.concat, and then refactor the code to do the same thing using the .flatMap method. Then, we'll see how we can use empty arrays in our map function to act as a filter before mapping.