Jayita Das 12th Jul 2024 at 11:32pm If the code is like: for (let i = 0; i < 5; i++) { const value = i; console.log(value); } Why is the const keyword used for value even though it changes every time? JavaScript Iteration through loops const keyword for loops