Solved

Proper Coding Conventions Suggest Using ≪code>let</code> Instead of ≪code>var</code> for the for Loop's

Question 16

Multiple Choice

Proper coding conventions suggest using <code>let</code> instead of <code>var</code> for the for loop's index variable because:


A) the <code>let</code> keyword automatically initializes the index variable to 0.
B) the <code>let</code> keyword limits the scope of the index variable to the <code>for</code> loop.
C) the <code>var</code> keyword is not part of the HTML5 standard (although many browsers still support it) .

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions