Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2023-06-08 22:17:35 +03:00
parent 0489745d06
commit 3a93d0a4d8

View File

@ -110,16 +110,19 @@
[42] instanceof Object // -> true
{} instanceof Object // -> true
// this essentially checks if the left oprtand is related to (i.e. in the
// inheritance chain of) the second operand's .prototypr, or we can say
// that it id "inherited" from the constructor.
// Prototypes and inheritance
//
//
// Constructors
//
//
/**********************************************************************