Temporal dead zone
console.log(marks) //from here
console.log("mohit ")
console.log("gangwar")
let marks = 100 ; // to here is a temporal dead zone
console.log(marks)
//because of using let and const keyword varaible hoisting is not possible
//and upper portion can't access the variable so
// they becomes temporal dead zone