Kembalikan Konten Array Hanya JS

const array1 = ['a', 'b', 'c'];
const iterator = array1.values(); // returns only the values
Rich Rhinoceros