//Task 5 let string = 'this is a string' let boolean = true let undefined let null0 = null console.log(typeof string) console.log(typeof boolean) console.log(typeof undefined) console.log(typeof null0)