What does .intern() do when handling strings? For example, if I have a string variable called myString and I do the following:

someOtherVariable = myString.intern();

What does it store in the other one?


-JR-