The value of myVar will be undefined. In JavaScript, when you declare a variable without initializing it, it automatically gets the value undefined. This is different from null, which is an explicit value representing the intentional absence of any object value. Variables are never automatically initialized with null, empty strings, or 0 in JavaScript.