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..fe5dbf3
--- /dev/null
+++ b/01_Day_Introduction/01_day_starter/datatypes.js
@@ -0,0 +1,6 @@
+// Use the typeof operator to check data types
+
+console.log(typeof name);
+console.log(typeof isStudent);
+console.log(typeof age);
+console.log(typeof favoriteColor);
diff --git a/01_Day_Introduction/01_day_starter/index.html b/01_Day_Introduction/01_day_starter/index.html
index 7ed5b19..c1cc0e5 100644
--- a/01_Day_Introduction/01_day_starter/index.html
+++ b/01_Day_Introduction/01_day_starter/index.html
@@ -13,6 +13,7 @@
+