Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit8f85e71

Browse files
authored
CONST vs LET vs VAR
1 parentb2d0d5e commit8f85e71

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

‎README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
|44|[generate randomUUID](#generate-random-uuid)|
5151
|45|[structuredClone](#structuredClone)|
5252
|46|[get device orientation](#get-device-orientation)|
53-
53+
|47|[CONST vs LET vs VAR](#const-let-var)|
5454

5555
**[⬆ Back to Top](#table-of-contents)**
5656
###How to generate a random number in a given range
@@ -994,3 +994,14 @@ function getOrientation() {
994994
}
995995
996996
```
997+
998+
**[⬆ Back to Top](#table-of-contents)**
999+
### CONST vs LET vs VAR
1000+
1001+
| | const | Let | Var |
1002+
|------------------------|-------|-----|-----|
1003+
| Can be Reaasigned? | X | :white_check_mark: | V |
1004+
| Cab be Redeclared? | X | X | V |
1005+
| Block Scope | V | V | X |
1006+
| Function Scope | V | V | V |
1007+
| Stored in Global Scope | X | X | V |

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp