Yes, it appears so. From MDN:
> The flatMap() method first maps each element using a mapping function, then flattens the result into a new array. It is identical to a map() followed by a flat() of depth 1, but flatMap() is often quite useful, as merging both into one method is slightly more efficient.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...