From b2ccb089f171cda058c1fd23ed9e1c498c4355bb Mon Sep 17 00:00:00 2001 From: Vasyl Dudla <61563468+Vasya564@users.noreply.github.com> Date: Thu, 19 Feb 2026 00:34:01 +0200 Subject: [PATCH] Add custom join method to Array prototype --- src/arrayMethodJoin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arrayMethodJoin.js b/src/arrayMethodJoin.js index 3a62201c..36e8b648 100644 --- a/src/arrayMethodJoin.js +++ b/src/arrayMethodJoin.js @@ -5,7 +5,7 @@ */ function applyCustomJoin() { [].__proto__.join2 = function(separator) { - // write code here + // write here }; }