njs icon indicating copy to clipboard operation
njs copied to clipboard

interactive shell: return the value of the last expression evaluated.

Open drsm opened this issue 6 years ago • 0 comments

like eval() does.

root@node:~# node --use-strict
> if (true) false;
false
> if (false) true;
undefined
> do true; while (false);
true
> for (var i = 0; i < 10; ++i) { i;;;; }
9

drsm avatar Apr 13 '19 13:04 drsm