We're a place where coders share, stay up-to-date and grow their careers.
Tip 10 has an off-by-one error going on: there's no need to add one to colors.length since it's already one more than the highest index.
colors.length
Great tips though! I didn't know about the array.length = 0 one and will use it for sure.
array.length = 0
Thanks for suggestion
Tip 10 has an off-by-one error going on: there's no need to add one to
colors.length
since it's already one more than the highest index.Great tips though! I didn't know about the
array.length = 0
one and will use it for sure.Thanks for suggestion