combineTwo
Objective(s): Practice manipulating elements of an array in the context of a loop.
Given two arrays, arrA
and arrB
, create a new array containing their values in the same order they appear. For this problem, the second array is appended to the end of the first array.
combineTwo({1}, {2, 3})-> {1, 2, 3}
combineTwo({7, 11}, {24, 7}) -> {7, 11, 24, 7}
Type your solution
Skills Practiced:
3.C
3.D
4.A
4.B
Saved
Saved