concatinate array code example
Example 1: join two numpy 2d array
import numpy as np
a = np.array([[0, 1, 3], [5, 7, 9]])
b = np.array([[0, 2, 4], [6, 8, 10]])
c = np.concatenate((a, b), axis=0)
print(c)
Output :
[[ 0 1 3]
[ 5 7 9]
[ 0 2 4]
[ 6 8 10]]
Example 2: combine two arrays javascript
let arr1 = [0, 1, 2];
let arr2 = [3, 5, 7];
let primes = arr1.concat(arr2);
// > [0, 1, 2, 3, 5, 7]