Last active
November 19, 2019 06:45
-
-
Save myogeshchavan97/7179611954bc3d7fcad11a112fd6bf89 to your computer and use it in GitHub Desktop.
Concat Two Arrays
This file contains 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 first = ["monday","tuesday"]; | |
const second = ["wednesday", "thursday", "friday"]; | |
const combined = [...first, ...second]; | |
console.log(combined); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment