I’m very new to coding and want to know what an immutable string is. I’ve read that this means that a string object can’t be changed once it’s created.
String = ‘hello’
String = ‘bye’
Would the second expression not work because that variable already exists? Also, if I wanted to change the first string, couldn’t I just edit that one directly?