|
|
|
|
|
by annoyingconst92
2072 days ago
|
|
Except `const` ruins interactive rapid prototyping using the browser DevTools console. If `width` was declared `const width = 800` you can't interactively experiment by setting `width=1024` because you get `..TypeError: Assignment to constant....` |
|