prefer-const vs for-of-loop · Issue #4933 · eslint/eslint

ESLint suggest that I should use const in for-of-loops for (let num of [1,2,3,4,5]) { console.log(num); // 1, 2, 3, 4, 5 } but thats wrong, because if switch this than I get in Firefox and Chrome a...