Skip to content

CONST vs LET vs VAR #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 8, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update README.md
  • Loading branch information
roeib authored Feb 8, 2023
commit 23fe606caaa26c9ffde116274b56afdd9455bc72
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1000,8 +1000,8 @@ function getOrientation() {

| | const | Let | Var |
|------------------------|-------|-----|-----|
| Can be Reaasigned? | X | :white_check_mark: | V |
| Cab be Redeclared? | X | X | V |
| Block Scope | V | V | X |
| Function Scope | V | V | V |
| Stored in Global Scope | X | X | V |
| Can be Reaasigned? | :x: | :white_check_mark: |:white_check_mark: |
| Cab be Redeclared? | :x: | :x: | :white_check_mark: |
| Block Scope | :white_check_mark: |:white_check_mark: | :x: |
| Function Scope | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Stored in Global Scope | :x: | :x: | :white_check_mark: |