You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
counter should be defined in the iforelse` statement before using it.
numberOfblocks is probably useless. In a loop you can use blocks.length that is not slower. If you don't need the index in the array you can as well use for {const block of blocks}
The text was updated successfully, but these errors were encountered:
let blocks, numberOfblocks, counter;
Simply define here
let blocks=[]
counter should be defined in the
ifor
else` statement before using it.numberOfblocks
is probably useless. In a loop you can useblocks.length
that is not slower. If you don't need the index in the array you can as well usefor {const block of blocks}
The text was updated successfully, but these errors were encountered: