var
↔ JS Keyword to Declare mutable Variable with Function Scope
References
{ var notPrivate = true }
↔ true. readable outside Block sincevar
is Function Scoped
var
↔ JS Keyword to Declare mutable Variable with Function Scope{ var notPrivate = true }
↔ true. readable outside Block since var
is Function Scoped