<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
<script>
var x = 100;
function hello(){
if (!x) {
var x = 999
}
console.log(x)
if (!x) {
x = 666
}
console.log(x)
}
hello();
</script>
</html>