Initialization vs assignment
问题 The terms "initialization" and "assignment" seem to be used interchangeably. I did some searching and it seems that there might technically be a difference. My understanding is that, in the context of variables, a variable is initialized when the JavaScript engine makes it available for use, and assignment (whether done explicitly [as in let foo = 1; ] or by the JavaScript engine, as in the following example) is one way to achieve this. let foo; console.log(foo); // undefined (initialization