Skip to content

Commit

Permalink
Merge pull request #273 from Benappiahpoku/patch-12
Browse files Browse the repository at this point in the history
Update question 307 README.md
  • Loading branch information
sudheerj committed Jun 12, 2024
2 parents 31e07df + cb20a3e commit 9e96819
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 @@ -5616,9 +5616,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 9e96819

Please sign in to comment.