HubSpot interview question

Write a function that inserts a comma between each letter of a string.

Interview Answer

Anonymous

6 Oct 2022

Split the string into an array, join the array with commas.

1