เราต้องเขียนฟังก์ชันที่รับอาร์เรย์และสตริงจำนวนเท่าใดก็ได้เป็นอาร์กิวเมนต์ งานคือการตรวจสอบว่าสตริงเกิดขึ้นภายในอาร์เรย์หรือไม่ หากเป็นเช่นนั้น เราต้องย้ายสิ่งนั้นไปที่ด้านหน้าของอาร์เรย์
ดังนั้น เรามาเขียนโค้ดสำหรับฟังก์ชันนี้กัน −
ตัวอย่าง
const arr = ['The', 'weather', 'today', 'is', 'a', 'bit', 'windy.']; const pushFront = (arr, ...strings) => { strings.forEach(el => { const index = arr.indexOf(el); if(index !== -1){ arr.unshift(arr.splice(index, 1)[0]); }; }); }; pushFront(arr, 'today', 'air', 'bit', 'windy.', 'rain'); console.log(arr);
ผลลัพธ์
ผลลัพธ์ในคอนโซลจะเป็น -
[ 'windy.', 'bit', 'today', 'The', 'weather', 'is', 'a' ]