JSFiddle - React, Tailwind, and code Playground

by Frank Liu

JavaScript

const restartUrl = undefined;
const shortCode = '123'
const shortCodeOnRestartPattern = /sc=[^?&]+/;
const newUrl = shortCode
    ? restartUrl.replace(shortCodeOnRestartPattern, `sc=${shortCode}`)
    : restartUrl;
    
    console.log(newUrl)