From 04604cb2c39cd78f602967b069415e2fa389949f Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 3 Jun 2023 23:04:56 +0300 Subject: [PATCH] ... Signed-off-by: Alex A. Naanou --- js-types-n-oop.js | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/js-types-n-oop.js b/js-types-n-oop.js index eabd88a..bfec5c5 100755 --- a/js-types-n-oop.js +++ b/js-types-n-oop.js @@ -5,8 +5,8 @@ * **********************************************************************/ // -// Types and object -// ================ +// Types and objects +// ================= // // JavaScript's type system is split into two categories of enteties: // basic types or values and objects, they differ in several aspects. @@ -22,7 +22,7 @@ // // // Basic values -// ============ +// ------------ // // numbers var integer = 123 @@ -80,18 +80,25 @@ -// Objects -// ======= -// +// Type cecking // + + + +// Objects +// ------- +// + +// Type cheking +// + + // Prototypes and inheritance -// -------------------------- // // // Constructors -// ------------ // //