Say I have a string below:
const input = `This is a link: https://www.google.com/, this is another link: https://stackoverflow.com/questions/ask.`
How would I parse that string and output another string that looks as follows in js:
const output = `This is a link: <a href="https://www.google.com/">https://www.google.com/</a>, this is another link: <a href="https://stackoverflow.com/questions/ask">https://stackoverflow.com/questions/ask</a>.`