From b06654c6f275b4d37223647aebcb9f5bee2e7edf Mon Sep 17 00:00:00 2001 From: koronya Date: Wed, 7 Jan 2026 23:42:17 +0900 Subject: [PATCH] [JS][8kyu] Sentence Smash --- codewars/8kyu/sentence-smash/koronya.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 codewars/8kyu/sentence-smash/koronya.js diff --git a/codewars/8kyu/sentence-smash/koronya.js b/codewars/8kyu/sentence-smash/koronya.js new file mode 100644 index 000000000..256cf8ddd --- /dev/null +++ b/codewars/8kyu/sentence-smash/koronya.js @@ -0,0 +1,7 @@ +// [JS][8kyu] Sentence Smash +// sentence-smash +// https://www.codewars.com/kata/53dc23c68a0c93699800041d/train/javascript + +const smash = (words) => words.join(' ') + +smash(['hello', 'world']) === 'hello world'