On Aug 31, 3:29 am, Todd W. [email protected] wrote:
Shows up in browser as this:
[“a”, “b”, “c”]
That’s perfectly valid. [“a”, “b”, “c”] is the same as [‘a’, ‘b’,
‘c’]. That is, “a” is the same as ‘a’, and so on. (Unlike in some
languages, where only one or the other is used at all, or some where
it makes a difference in the type, such as C/C++, where ‘a’ would be a
character and “a” would be an array containing an ‘a’ and a null.)
When printing values out, Ruby represents strings using double quotes
instead of single as you used. Ruby doesn’t remember (or care) which
you used, once it determines the actual value of the string.
The only time it matters is when you are writing a string; single
quotes prevent variables and other “magic strings” taking on their
values. For example, try this in irb:
x = 3
=> 3‘x is #{x}’
=> “x is #{x}”“x is #{x}”
=> “x is 3”y = “foo”
=> “foo”z = ‘foo’
=> “foo”y == z
=> true
-Dave
–
Specialization is for insects. -RAH | Have Pun, Will Babble! -me
Programming Blog: http://codosaur.us | Work: http://davearonson.com
Leadership Blog: http://dare2xl.com | Play: http://davearonson.net
-
-
-
-
- WATCH THIS SPACE * * * * * | Ruby: http://mars.groupsite.com
-
-
-