From e7508592a50537f5be13c12f417070128e62bbc9 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sun, 21 Aug 2016 15:58:49 -0400 Subject: [PATCH] loosely typed language --- javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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';