Say there is a vars.js:
let a = "a" let b = "bbb" let cca = "vsa"
Say there are 1000 of these variables. Is there a way to loop through them using only JS or node.js ?
Thank you in advance.
I was trying to push them all to a array so that I can loop through them.