Exercise 2.1

This commit is contained in:
Karan 2021-11-24 19:09:07 +05:30 committed by GitHub
parent 2345bceda0
commit ce07cc4288
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1 +1,13 @@
let str1 = 'Laurence';
let str2 = "Svekis";
let val1 = undefined;
let val2 = null;
let myNum = 1000;
console.log(typeof(str1));
console.log(typeof(str2));
console.log(typeof(val1));
console.log(typeof(val2));
console.log(typeof(myNum));