I was playing with Rails Console. By chance, I accidentally convert an object into a string. Below are my codes.
Rails Console
user = User.find(1)
user.to_s # returns <User:0x00000103ada530>
My question is, What is <User:0x00000103ada530>
? Is it like an ID of User? Is I enter <User:0x00000103ada530>
will I get back User.find(1)
Thanks