DEV Community

Jonathan Armentor
Jonathan Armentor

Posted on

1 1

Generating an Inclusive Array Between Two Numbers

I wrote a simple little function using ES6 array methods to generate an inclusive array between two given numbers. Handy for a handful of applications.

Happy to get the community's feedback.

function sequential(to, from = 0) {
    return Array.from(Array(to + 1).keys()).slice(from)
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Quickstart image

Django MongoDB Backend Quickstart! A Step-by-Step Tutorial

Get up and running with the new Django MongoDB Backend Python library! This tutorial covers creating a Django application, connecting it to MongoDB Atlas, performing CRUD operations, and configuring the Django admin for MongoDB.

Watch full video →