Created
September 4, 2022 08:28
-
-
Save EdMSL/e3c7dc59501a891d3f12a2de7dc5302e 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 arr = [1,[2,[3,[4,[5]]]]]; | |
| const dArray = arr.toString().split(',').map((num) => Number(num)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment