JavaScript logical questions
**Here, we Have JavaScript Logical Question**
Question no:1
function car(){
console.log(model);
console.log(color);
var model = 2015;
let color = red;
}
car()
The Output will be Undefined & Error. in the first line the output is und...
devanshu20.hashnode.dev2 min read