let a = 'hello'; a[0] = 'H'; console.log(a); // "hello"
var statement = "I am an immutable value"; var otherStr = statement.slice(8, 17);