Skip to content

Instantly share code, notes, and snippets.

@3dvkr
3dvkr / fromTo.js
Created September 5, 2022 14:31
A function fromTo that produces a generator, that will produce values in a range.
/* ---
Write a function fromTo that produces a generator, that will produce values in a range.
Source: https://buttondown.email/cassidoo/archive/if-everything-was-perfect-you-would-never-learn/
*/
function fromTo(start, end) {
let value = start
return function () {
if (value <= end) {
return value++