HubSpot Interview Question

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

Interview Answer

Anonymous

Oct 6, 2022

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

1