Created
February 20, 2020 20:27
-
-
Save omarkdev/52e582b2dd9f7e82e7615568ccce23b2 to your computer and use it in GitHub Desktop.
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
const arr1 = [1, 2, 3, 4]; | |
const arr1FlattedMultipliedByTwo = arr1.flatMap(v => [ v * 2 ]); | |
// arr1FlattedMultipliedByTwo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment