Remove unnecessary character (#120)

This commit is contained in:
Yao Ding 2018-05-01 16:45:20 -04:00 committed by Yangshun Tay
parent df1f5b77ec
commit a623833fad
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,7 @@ Advantages:
* Makes it impossible to accidentally create global variables.
* Makes assignments which would otherwise silently fail to throw an exception.
* Makes attempts to delete undeletable properties throw (where before the attempt would simply have no effect).
* Requires that function parameter names be unique.a
* Requires that function parameter names be unique.
* `this` is undefined in the global context.
* It catches some common coding bloopers, throwing exceptions.
* It disables features that are confusing or poorly thought out.