If you have a configuration object that should not be altered during the execution of a program, how would you declare it using ES6 syntax?

  • Declare using let
  • Declare using const
  • Declare using var
  • Declare using readonly (ES6 feature)
You would declare the configuration object using const, as it ensures the object remains constant throughout the program execution, preventing unintended changes.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *