First a
pointed to the string “Dog”. Then you changed the variable a
to point at a new string “Dog eats treats”. You didn’t actually mutate the string “Dog”. Strings are immutable, variables can point at whatever they want.
First a
pointed to the string “Dog”. Then you changed the variable a
to point at a new string “Dog eats treats”. You didn’t actually mutate the string “Dog”. Strings are immutable, variables can point at whatever they want.