Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-06-17 22:29:50 +03:00
parent c0451ad924
commit cded540a3b

View File

@ -131,6 +131,12 @@
typeof('meaning of life') // -> 'string'
// Note that this has a small "inconsistency" that can be used to check
// if a variable is defined.
typeof(unknown_variable) // -> 'undefined'
// Objects
// -------