JavaScriptの配列メソッドの一つであるunshift()の使用方法と例
const fruits = ['apple', 'banana', 'orange']; fruits.unshift('grape'); console.log(fruits); // 結果: ['grape', 'apple', 'banana', 'orange']>>More
const fruits = ['apple', 'banana', 'orange']; fruits.unshift('grape'); console.log(fruits); // 結果: ['grape', 'apple', 'banana', 'orange']>>More