about | help | code help+videos | done | prefs |
together
Given two arrays, return a new array consisting of all the elements of the first array, followed by all the elements of the second array. together([1, 2], [3, 4, 5]) → [1, 2, 3, 4, 5] together([1, 2, 3], [1]) → [1, 2, 3, 1] together([], [3, 4]) → [3, 4] ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 215
Copyright Nick Parlante 2017 - privacy