From b5cdf5b594770c690ab1c7b386e22ec39301e859 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sun, 21 Aug 2016 15:58:40 -0400 Subject: [PATCH] taking out objects and arrays initially --- javascript.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/javascript.md b/javascript.md index f98615c..9f536d9 100644 --- a/javascript.md +++ b/javascript.md @@ -10,13 +10,6 @@ Javascript has several basic data types: 1.2 // number (float) true // boolean false // boolean -[1,2,3] // object (array) -{ - prop1: 'value1', - prop2: 'value1' -} // object -null // object (null) -undefined // undefined ``` ## Variables