How to group array by date in Javascript – Fast Tips

Valerio Barbera
group-array-by-date-javascript

I use this technique to group the bug fixes array by date in the Inspector UI, and I thought it could be a good code snippet idea for other developers. I also wrote an implementation for Vuejs and a more detailed implementation that supports filters.

I needed to implement this solution to make a list of items history easy to scroll for users.

Use native groupBy function

const items = [
    {"created_at": "2023-06-01", "value": 10},
    {"created_at": "2023-06-02", "value": 20},
    {"created_at": "2023-06-01", "value": 30},
    {"created_at": "2023-06-03", "value": 40},
    {"created_at": "2023-06-02", "value": 50},
];

let groups = Object.groupBy(items, item => moment(item.created_at).format('YYYY-MM-DD'));

I decided to use moment as a date library because the standard javascript Date object doesn’t provide an easy way to format dates. Thanks to the moment’s format method you could customize the grouping string by the month or the year, simply by changing the format string: ‘YYYY-MM’ for month, or ‘YYYY’ for year.

Things to know

The native groupBy() function returns a null-prototype object. This means that the resulting object does not have the native object methods you could expect like hasOwnProperty().

If you call the method it will result in a “not a function error”:

// TypeError: groups.hasOwnProperty is not a function
console.log(groups.hasOwnProperty("2023-06-01"));

To overcome this limitation you can implement the grouping strategy by yourself using the reduce function and get a fully functional object in return.

Grouping with the reduce function

If you want more control on the new object creation process you can implement the raw strategy using the reduce function. It allows you to progressively create a new object where each date becomes a key of the resulting object, with the corresponding element as its value.

let groups = items.reduce((group, item) => {
    let date = moment(item.created_at).format('YYYY-MM-DD');
		
    if (!group[date]) {
        group[date] = [];
    }
		
    group[date].push(item);
		
    return group;
}, {}); // <-- Start with an empty object

Support Filtering

You can also introduce a filter function to filter the elements of the resulting object before grouping.

let groups = items.filter(item => {
    // Filtering before grouping
    return item.value > 20;
}).reduce((group, item) => {
    let date = moment(item.created_at).format('YYYY-MM-DD');
		
    if (!group[date]) {
        group[date] = [];
    }
		
    group[date].push(item);
    
    return group;
}, {}); // <-- Start with an empty object

Inside the callback function of filter(), we specify the filter condition. In this example, we keep only the elements where the ‘value’ field is greater than a threshold. You can modify this condition based on your specific use case.

Use it inside a Vuejs component

To preserve the reactivity of the data manipulation statements I use a computed property, so it will change if the underlying collection changes. I implement only the data structure iteration on the template side.

Here is the component structure:

<template>
    <div v-for="(group, date) in groups">
        <h4>{{date}}</h4>
		
        <ul>
            <li v-for="item in group">{{item.value}}</li>
        </ul>
		
        </br>
    </div>
</template>

<script>
import moment from "moment";

export default {
    data() {
        return {
            threshold: 0,
            items: [
                {"created_at": "2023-06-01", "value": 10},
                {"created_at": "2023-06-02", "value": 20},
                {"created_at": "2023-06-01", "value": 30},
                {"created_at": "2023-06-03", "value": 40},
                {"created_at": "2023-06-02", "value": 50},
            ],
        }
    },

    computed: {
        groups() {
            return this.items.filter(item => {
                return item.value > this.threshold;
            }).reduce((group, item) => {
                let date = moment(item.created_at).format('YYYY-MM-DD');
                if (!group[date]) {
                    group[date] = [];
                }
                group[date].push(item);
                return group;
            }, {});
        }
    },
}
</script>

You can follow me on Linkedin or X. I post about building my SaaS business.

Monitor your application for free

Inspector is a Code Execution Monitoring tool specifically designed for software developers. You don’t need to install anything in the infrastructure, just install the client library based on the technology you use.

Inspector is super easy to use and require zero configuration.

If you are looking for HTTP monitoring, query insights, and the ability to forward alerts and notifications into your messaging environment try Inspector for free. Register your account.

Or learn more on the website: https://inspector.dev

Inspector Code Execution Monitoring

Related Posts

Struggling with RAG in PHP? Discover Neuron AI components

Implementing Retrieval-Augmented Generation (RAG) is often the first “wall” PHP developers hit when moving beyond simple chat scripts. While the concept of “giving an LLM access to your own data” is straightforward, the tasks required to make it work reliably in a PHP environment can be frustrating. You have to manage document parsing, vector embeddings,

Enabling Zero-UI Observability

It is getting harder to filter through the noise in our industry right now. New AI tools drop every day, and navigating the hype cycle can be exhausting. But the reality is that our day-to-day job as developers is changing. Most of us have already integrated AI agents (like Claude, Cursor, or Copilot) into our

Neuron AI Laravel SDK

For a long time, the conversation around “agentic AI” seemed to happen in a language that wasn’t ours. If you wanted to build autonomous agents, the industry nudge was often to step away from the PHP ecosystem and move toward Python. But for those of us who have built our careers, companies, and products on