JSFiddle - React, Tailwind, and code Playground
by aspirisen
JavaScript
var s = new String("test") //String {0: "t", 1: "e", 2: "s", 3: "t", length: 4, [[PrimitiveValue]]: "test"}
console.log(s);
s[0] = "q" //Try to change the first letter
console.log(s); //Nothing is changed