const-assign.js 100 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 "use strict"; const x = 3; x++; --x; x = 4; x *= 2; x /= 2; if (true) { let x = 3; x++; }