Skip to content

Instantly share code, notes, and snippets.

@rousnay
Last active September 27, 2022 08:54
Show Gist options
  • Select an option

  • Save rousnay/43c11eefac895d6c1036f0af0f27d20f to your computer and use it in GitHub Desktop.

Select an option

Save rousnay/43c11eefac895d6c1036f0af0f27d20f to your computer and use it in GitHub Desktop.
sorting
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