The ESLint rule, no-unused-vars, helps in identifying the variables that are declared but not ________ in the code.

  • used
  • initialized
  • declared
  • defined
The ESLint rule no-unused-vars helps in identifying variables that are declared but not used in the code. It checks for declared variables that are not referenced elsewhere in the code.
Add your answer
Loading...

Leave a comment

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