- 1
81 Comments const Fill in the blanks to make a constant named total and the variable i that is only accessible inside the loop.
________ total = 100; let sum = 0; for( _________ i = 0; i < total; i++) { sum += i; }
3 odpowiedzi
+ 3
A: const & let
+ 1
In first line u have to write keyword which used to define variable .
Then statement two u need to write initial part of for loop
+ 1
1-const
2-let