diff --git a/01_Day_Introduction/01_day_starter/datatypes.js b/01_Day_Introduction/01_day_starter/datatypes.js
new file mode 100644
index 0000000..1572678
--- /dev/null
+++ b/01_Day_Introduction/01_day_starter/datatypes.js
@@ -0,0 +1,16 @@
+let firstName = 'Matthew'
+let yourName = "ODB"
+let yourAge = 100
+let myAge = 21
+const PI = 3.14
+let isMarried = true
+let nullValue = null
+let notDefined
+let anotherOne
+let andAnotherOne
+let undefinedVarFour
+array = [firstName, myAge, PI, isMarried, nullValue, notDefined]
+array.forEach(logType)
+function logType(variable){console.log(typeof variable)}
+console.log(`${firstName} is ${myAge} years old`)
+console.log(`${yourName} is ${yourAge} years old, what an oldie!`)
diff --git a/01_Day_Introduction/01_day_starter/index.html b/01_Day_Introduction/01_day_starter/index.html
index 43831f6..31f817b 100644
--- a/01_Day_Introduction/01_day_starter/index.html
+++ b/01_Day_Introduction/01_day_starter/index.html
@@ -11,9 +11,10 @@
-
+
+