Just going through a tutorial, and thought somewhere I saw
first_name:
And another place
:first_name
Is this right? What is the difference?
|
Just going through a tutorial, and thought somewhere I saw
And another place
Is this right? What is the difference? |
||||
|
The hash syntax changed in Ruby 1.9.2 to get closer to json. So:
Is the same as:
In all other cases, the colon must come first. |
||||
|
|
|
:first_name is a symbol, while first_name: is a Hash key in the new Ruby 1.9.2 syntax. Hash keys are then converted to symbols:
It is the same as writing:
|
|||||
|
:key => "value"andkey: "value"assignments? – mu is too short Jun 10 '12 at 16:55