frontend-challenges
frontend-challenges copied to clipboard
141 - range - typescript
index.ts
export const range = (from: number, to: number) => {
const array = [];
for(let i = from; i <= to; i++) {
array.push(i);
}
return array;
};