Last active
December 9, 2019 14:14
-
-
Save evilboss/3a71f22ec058685c890967fc05af674e to your computer and use it in GitHub Desktop.
combine 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
let firstDay = ['ip1', 'ip2', 'ip3'] | |
let secondDay = ['ipx', 'ipy', 'ipz'] | |
console.log([...firstDay, ...secondDay]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment