diff --git a/javascript.md b/javascript.md index 9f536d9..a5da3c0 100644 --- a/javascript.md +++ b/javascript.md @@ -21,7 +21,7 @@ var foo = 'string'; var bar = 1; ``` -Variables can be reassigned to any other value by omitting the var keyword +Reassignment is done by omitting the var keyword. Variables are loosely typed (can be reassigned to any other value, regardless of their initial value) ```javascript var foo = 'a string';