A very basic question but still learning.
I have a 1D array say = [a,b,c]
.
and another 2D array = [[1,2,3],[4,5,6],[7,8,9]]
.
How do I push the array into beginning of each row of 2D array so that my array result looks like this.
[[a,1,2,3],[b,4,5,6],[c,7,8,9]]
.