Repository URL to install this package:
|
Version:
2.13.0 ▾
|
// Node.js REPL Session
> let a = 3
undefined
> a
3
> let b = '4'
undefined
> b
'4'
> b == a
false
> b === a
false
> if(a) {
... console.log(a)
... }
3
undefined
> c
Uncaught ReferenceError: c is not defined