From 6f614473efff1ec9df25da82c5ee782b67180310 Mon Sep 17 00:00:00 2001 From: Vasyl Dudla <61563468+Vasya564@users.noreply.github.com> Date: Tue, 17 Feb 2026 14:44:34 +0200 Subject: [PATCH] Add placeholder comment for join2 method Added a placeholder comment for the join2 method implementation. --- src/arrayMethodJoin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arrayMethodJoin.js b/src/arrayMethodJoin.js index 3a62201c..c2ec8194 100644 --- a/src/arrayMethodJoin.js +++ b/src/arrayMethodJoin.js @@ -5,7 +5,7 @@ */ function applyCustomJoin() { [].__proto__.join2 = function(separator) { - // write code here + // write code }; }