test = ['d','e','f']; //push test = [...test,'g','h','i']; //shift test = ['a','b','c',...test]; //insert test = ['1','2',...test,'3','4']; const high = array.filter(v => v > 100); const tax = array.map(v => v * 1.25);