Skip to content

Instantly share code, notes, and snippets.

View ruyahs's full-sized avatar
🎯
Focusing

ruyahs

🎯
Focusing
View GitHub Profile
@ruyahs
ruyahs / RangeOfValues.js
Last active November 26, 2021 19:13
Generates a range of values with an IIFE
var RangeOfValues = ((low , high) => {
var ArrOfRangeOFValues = [] ;
for (let index = low; index < high; index++) {
ArrOfRangeOFValues.push(index)
}
return ArrOfRangeOFValues ;