When I enter _
into a nodejs terminal, I get "undefined", but when I type in x
, I get a reference error. I thought underscores were just another character, why am I getting different results?
$ nodejs
> _
undefined
> x
ReferenceError: x is not defined
>
I thought both would give me a reference error.