12345678910



Question 1: function() {
if(true) {
var a = 5;
}
alert(a);
}

what would be the value alerted by this function?

1. 0
2. 5
3. null
4. undefined