Skip to content

Commit

Permalink
Update question 307 README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Benappiahpoku committed Jun 11, 2024
1 parent c18a37c commit cb20a3e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@
| 304 | [List down some of the features of ES6](#list-down-some-of-the-features-of-es6) |
| 305 | [What is ES6](#what-is-es6) |
| 306 | [Can I redeclare let and const variables](#can-i-redeclare-let-and-const-variables) |
| 307 | [Is const variable makes the value immutable](#is-const-variable-makes-the-value-immutable) |
| 307 | [Does the const variable make the value immutable](#Does-the-const-variable-make-the-value-immutable) |
| 308 | [What are default parameters](#what-are-default-parameters) |
| 309 | [What are template literals](#what-are-template-literals) |
| 310 | [How do you write multi-line strings in template literals](#how-do-you-write-multi-line-strings-in-template-literals) |
Expand Down Expand Up @@ -5615,9 +5615,9 @@
**[⬆ Back to Top](#table-of-contents)**
307. ### Is const variable makes the value immutable
307. ### Does the `const` variable make the value immutable

No, the const variable doesn't make the value immutable. But it disallows subsequent assignments(i.e, You can declare with assignment but can't assign another value later)
No, the `const` variable doesn't make the value immutable. But it disallows subsequent assignments(i.e, You can declare with assignment but can't assign another value later)

```javascript
const userList = [];
Expand Down

0 comments on commit cb20a3e

Please sign in to comment.