I am a beginner in javascript , I was trying to play with variables until i reached to this issue, when i have a variable called name , and i commented its definition step , it still has the same value , although i commented it . and this happens only with keyword "name" , so what is it ?
<script>
// var name="mina"; i commented it now , so if you want to test , enable it once , and then comment it , it will still give you the result although i commented it and deleted the cache
// var name;
alert(name);
</script>