DEV Community

Cover image for Chrome 80 brings support for let and class redeclarations in the Console
Vishnu Damwala
Vishnu Damwala

Posted on • Updated on

Chrome 80 brings support for let and class redeclarations in the Console

Google Chrome browser built upon the open-source Chromium browser project manage and maintained by Google.

With the release of Chrome 80 version, now developers can redeclare with let and class in the console.

The inability to redeclare using let and class was a common annoyance amongst web developers who experiment new JavaScript code in the Console.

The Console now supports redeclarations of let and class statements.

Note: Redeclaring a let or class statement in a script outside of the Console or within a single Console input will still cause a SyntaxError.

The versions prior to Chrome 80, would throw an error when redeclaring a local variable with let in the Console

Screenshot for an example of the let redeclaration failing in the Console of Chrome 79

Example of the let redeclaration in the Console of Chrome 80:

Screenshot for an example of allowing the let redeclaration in the Console of Chrome 80

Image Credit:
Google Chrome Updates

Top comments (0)