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)
}
Top comments (0)