You must log in or register to comment.
0 ✊
1 👍
2 ☝️
3 👆
4 🖕
Hey, fourck you too, man.
counting != indexing
Haaaaaang on is that why we start on 0…
No. We count start at zero because the array already starts with an element of a specific size. Starting at 1 would always skip that initial element.
No, we start counting at one. We start indexing at zero.
An array with one element has an element count of 1, and that element would be at index 0.
This is how we end up with off-by-one errors