I read in the doc
An expression is any valid unit of code that resolves to a value.
Is the aforementioned value what is returned in the console next to <
?
Also how come x = 7
resolves to the value 7
, and var x = 7
resolves to the value undefined
since the two commands are doing the same thing : assigning the value 7 to the variable x of the global namespace ?