I wanted to know if there's any difference in terms of performance between these two cycles.
I already know they give the same result, but I always see both I'd like to know why does one get picked instead of another.
for (let i = 1; i <= 100; i++) {
//
}
for (let i = 1; i < 101; i++) {
//
}