JSFiddle - React, Tailwind, and code Playground

HTML

<p id="demo"></p>

JavaScript

function myFunction() {
    var newSize="300"
    var str = "https://lh3.googleusercontent.com/-U353P5vNuRE/AAAAAAAAAAI/AAAAAAAABKM/a7U7bq251x0/photo.jpg?sz=50";
    var res = str.split("?sz=50")[0]+"?sz="+newSize;
    document.getElementById("demo").innerHTML = res;
}

myFunction()