.values() Returns an iterator that returns the values of the array. const v = ['a', 'b', 'c'].values(); const a = v.next().value; // 'a' const b = v.next().value; // 'b' const c = v.next().value; // 'c'