learning-zone / javascript-basics

JavaScript Basics
https://learning-zone.github.io/javascript-basics/
1.75k stars 616 forks source link

Replace unnecessary use of let with const #37

Closed teahsea closed 2 months ago

teahsea commented 5 months ago

This PR Replace unnecessary use of let with const

Overview

This PR replaces the unnecessary use of let with const where variable values are not intended to be reassigned. It aims to improve code readability, maintainability, and adherence to best practices by promoting the use of immutable variables.

Also updated default argument example with more test cases.

teahsea commented 5 months ago

@learning-zone could you please review this? thanks.