I want to do something like this:
for(var i = 1; i <= 5; i++){
let ii = i;
for(var l = 'a'; l < 'z'; l++){
let ll = l;
}
}
I want the for that is inside the other for to be executed from'a' to'z', 5 times, but only prints the a, I still have to do something else?