String operators
console.log("my " + "string"); // console logs the string "my string".let mystring = "alpha";
mystring += "bet"; // evaluates to "alphabet" and assigns this value to mystring.Last updated
console.log("my " + "string"); // console logs the string "my string".let mystring = "alpha";
mystring += "bet"; // evaluates to "alphabet" and assigns this value to mystring.Last updated