DEV Community

Zevan Rosser
Zevan Rosser

Posted on

Golfed Join

const str = ['one','-','two'].join``;
console.log(str);
// outputs "one-two"
Enter fullscreen mode Exit fullscreen mode

With tagged templates you can pass a template string to a function without parens.

See more stuff like this over @ Snippet Zone

Top comments (0)