In the Ruby Koans, you have to fill in the blank for what represents string[1] below. Why is the answer 97?
def test_you_can_get_a_single_character_from_a_string
string = "Bacon, lettuce and tomato"
assert_equal ___ , string[1]
end
|
In the Ruby Koans, you have to fill in the blank for what represents
| |||||||||
feedback
|
|
97 is the ASCII decimal representation of 'a', which is the the letter located at string[1]. | |||||||
feedback
|
|
| ||||
|
feedback
|