Aşağıdaki kod, iki diziyi birleştirir.
const letters = ['a', 'b', 'c']; const numbers = [1, 2, 3]; const newArray = letters.concat(numbers); console.log(newArray); // Çıktı: ['a', 'b', 'c', 1, 2, 3]