Last active
September 27, 2022 08:54
-
-
Save rousnay/43c11eefac895d6c1036f0af0f27d20f to your computer and use it in GitHub Desktop.
sorting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const sortedCommentArray = commentArray.sort((a, b) => | |
| a.createdAt > b.createdAt ? 1 : b.createdAt > a.createdAt ? -1 : 0 | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment