Skip to content

Commit c0f2ed0

Browse files
authored
Add files via upload
1 parent 7f6911a commit c0f2ed0

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)