var x; console.log("the value of my variable x will be: thereIsNoValue."); console.log(x); var x = 10; console.log("the value of my variable x will be: theNumber10."); console.log(x);