How to sort data using the date in JavaScript?
Originally posted here!
Let's consider an array of blogs with publishedDate property.
// array of blogs
const blogs = [
{
title: "How to get started with Open Source",
publishedDate: "04 May, 2020",
},
{
title: "JavaScript is the b...
melvingeorge-me.hashnode.dev4 min read