I have the following array set:
myArr = [
[red, 1],
[blue, 2],
[yellow, 3],
[geen, 4]
];
Is there an operator/method in which I can return an array of just the 0 index item? So end result would be:
myArr2 = [red, blue, yellow, green]