From 0d1ed3b7acd1d26de0437a0ea82e521329b7a1de Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 9 Aug 2023 23:42:02 +0300 Subject: [PATCH] comments... Signed-off-by: Alex A. Naanou --- js-types-n-oop.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js-types-n-oop.js b/js-types-n-oop.js index a939d2b..9735df1 100755 --- a/js-types-n-oop.js +++ b/js-types-n-oop.js @@ -361,6 +361,7 @@ function List(){ var obj = this instanceof List ? this + // create an array base object but link it to List... : Reflect.construct(Array, arguments, List) return obj }