Constants
Last updated
Was this helpful?
Last updated
Was this helpful?
Constants were introduced in ES6(2015), and use a const
keyword. Variables that are declared with const
cannot be reassigned or redeclared.
Visit the chapter for more info about const and also look for "TypeError assignment to constant variable" in search engines to learn a fix.