We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f6911a commit c0f2ed0Copy full SHA for c0f2ed0
1 file changed
Basic Data Types Activity/Basic types.js
@@ -0,0 +1,18 @@
1
+/*
2
+Basic Types activity
3
+- Create 3 variables and set them up to the given instructions. Also, type check them with the typeof operator in the console.
4
+*/
5
+//your code here
6
+myFirstName = 'Ema';
7
+numberOfCities = 1;
8
+havingFun = false;
9
+///////////////////////////////////
10
+//check results in browser console
11
+console.log('myFirstName: ', myFirstName);
12
+console.log('numberOfCities: ', numberOfCities);
13
+console.log('havingFun: ', havingFun);
14
+
15
+// Do not edit code past this point
16
+if (typeof module !== 'undefined') {
17
+ module.exports = { myFirstName, numberOfCities, havingFun };
18
+}
0 commit comments