mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
82b3ee776b
PR-URL: https://github.com/nodejs/node/pull/26261 Fixes: https://github.com/nodejs/node/issues/26187 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
15 lines
132 B
Plaintext
15 lines
132 B
Plaintext
> console.log("foo")
|
|
foo
|
|
undefined
|
|
> 1 + 2
|
|
3
|
|
> "str"
|
|
'str'
|
|
> console.dir({ a: 1 })
|
|
{ a: 1 }
|
|
undefined
|
|
> { a: 1 }
|
|
{ a: 1 }
|
|
>
|
|
> .exit
|