In a function that calculates the sum of an array, how would the use of let and const impact the function's readability and bug prevention?

  • Use of let would enhance readability, and const would prevent bugs
  • Use of const would enhance readability, and let would prevent bugs
  • Use of let and const together would enhance both readability and bug prevention
  • It doesn't matter, let and const behave the same way in this context
Using const for variables that shouldn't be reassigned increases code readability, and using let for variables that can be reassigned helps prevent accidental bugs.
Add your answer
Loading...

Leave a comment

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