Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

reverse.md 310B

reverse()

The reverse method reverses the order of the collection’s items:

const collection = collect([1, 2, 3, 4, 5]);

const reversed = collection.reverse();

reversed.all();

// [5, 4, 3, 2, 1]

View source on GitHub