Error about using var

Đang mở
#1 0 bình luận 1 reaction 1 người được giao Xem trên GitHub

@alhassy đang làm issue này rồi.

Từ ngày 27/1/2021.

Đánh giá

Issue này chưa được đánh giá.

Mô tả

In the same way, for the same purpose, we may use var but it has undesirable properties; e.g., its declarations are in the global scope and no error is raised using var x = ⋯ if x is already declared.

This is at the end of the Types section. First bullet point of three.

The part that says "its declarations are in the global scope" is incorrect.

Later, in the Scope and Statements section, you say...

let, const declare local bindings; var always makes global ones!

Which again is incorrect. You can try this...

function f() {
    var x = 1;
}
console.log(x); // => Uncaught ReferenceError: x is not defined

...and see that x is not defined in the global scope. It will be local to the f function.

The difference about var and let in what regards scope is:

  • var bindings reach either function scope or the global scope. let bindings can also be limited to block scope.
  • var declarations are hoisted to the start of the scope. let bindings are not (*)

(*) To be more precise they are but have a mechanism that prevents usage before declaration and will throw an error, while var won't.

Ngôn ngữ chính
Không có dữ liệu ngôn ngữ
Star
221
Fork
23
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Hướng dẫn đóng góp

Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Issue khác của alhassy/JavaScriptCheatSheet

Tất cả issue của alhassy/JavaScriptCheatSheet

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.