This commit is contained in:
Karan
2021-11-25 20:25:58 +05:30
parent 65c4b167af
commit 1a19d738a9
10 changed files with 0 additions and 0 deletions
+13
View File
@@ -0,0 +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));