Ranges and range like constructs are common features in programming languages. Such as Python:
for x in range(1, 4):
print(x)
#prints: 1, 2,...
For further actions, you may consider blocking this person and/or reporting abuse
Great article! I especially enjoyed this part:
Nice 👏
Glad you enjoy it. After all, JS seems to be quite a flexible language