|
2 | 2 | names = ["Bob", "Joe", "Waffles!"]
|
3 | 3 | puts "First, we should see Bob:"
|
4 | 4 | puts names[0]
|
5 |
| -puts "Now we should se Joe:" |
| 5 | +puts "Now we should see Joe:" |
6 | 6 | puts names[1]
|
7 | 7 | puts "Lastly, who wants some Waffles?"
|
8 |
| -puts names[2] |
9 |
| -puts "" |
| 8 | +puts names[2], "\n" |
10 | 9 | puts "If we ask for something that doesn't exist (ie, out of range), we should get nothing:"
|
11 |
| -puts names[3] |
12 |
| - |
13 |
| -puts |
| 10 | +puts names[3], "\n" |
14 | 11 |
|
15 | 12 | # we can create a variable that is an empty array...
|
16 | 13 | types_of_waffles = []
|
17 | 14 | # ...and then populate it:
|
18 | 15 | types_of_waffles[2] = "White-chocolate-chip and blueberry"
|
19 | 16 | types_of_waffles[0] = "Whole-wheat and banana"
|
20 | 17 | types_of_waffles[1] = "Buttermilk"
|
21 |
| -puts types_of_waffles |
22 |
| - |
23 |
| -puts |
| 18 | +puts types_of_waffles, "\n" |
24 | 19 |
|
25 | 20 | # we can also change them...
|
26 | 21 | types_of_waffles[1] = "Sardine and horse radish"
|
27 |
| -puts types_of_waffles |
28 |
| - |
29 |
| -puts |
| 22 | +puts types_of_waffles, "\n" |
30 | 23 |
|
31 | 24 | # Regarding the usage of the Method, "Each":
|
32 | 25 | fruits = ["bananas", "strawberries", "mangos"]
|
|
35 | 28 | end
|
36 | 29 | # This essentially goes through the array, doing somthing to *each* something *in* the array
|
37 | 30 |
|
38 |
| -puts |
39 |
| - |
40 | 31 | # let's look at .to_s and .join
|
41 | 32 | veggies = ["Broccoli", "Carrots", "Bell Peppers"]
|
42 | 33 | # this first one should list each object on an individual line:
|
|
49 | 40 | puts veggies.join(', ')
|
50 | 41 | # Note that the above one does not add a comma after the last item in the array - the last item is not
|
51 | 42 | # considered. If you want to add something after the final item in the array:
|
52 |
| -puts veggies.join(' :) ') + ' 8)' |
53 |
| - |
54 |
| -puts |
| 43 | +puts veggies.join(' :) ') + " 8) \n" #the 8) is adedd to the puts line |
55 | 44 |
|
56 | 45 | # Now to look at .push, .pop and .last
|
57 | 46 | # push and pop are opposites, as + and - are opposites
|
58 | 47 | # push adds an object to the end of the array:
|
59 | 48 | puts veggies.to_s
|
60 | 49 | veggies.push "Onions"
|
61 |
| -puts veggies.to_s |
62 |
| - |
63 |
| -puts |
| 50 | +puts veggies.to_s, "\n" |
64 | 51 |
|
65 | 52 | # pop removes the last object from the array:
|
66 | 53 | puts veggies.to_s
|
67 | 54 | veggies.pop
|
68 |
| -puts veggies.to_s |
69 |
| - |
70 |
| -puts |
| 55 | +puts veggies.to_s, "\n" |
71 | 56 |
|
72 | 57 | # and finally, last does not affect the array - it just tells us what is the last item in the array
|
73 | 58 | puts veggies.last
|
74 | 59 | veggies.push "Onions"
|
75 |
| -puts veggies.last |
76 |
| - |
77 |
| -puts |
| 60 | +puts veggies.last, "\n" |
78 | 61 |
|
79 | 62 | some_array = %w[a b c d e f g]
|
80 | 63 | puts "some_array: #{some_array.join(", ")}"
|
81 |
| -puts some_array[-3, 2].join(", ") |
| 64 | +puts some_array[-3, 2].join(", "), "\n" |
82 | 65 | # The reason this gives us "e, f", is because: while -3 tells Ruby where to start looking in the array
|
83 | 66 | # (the -3th index, or "e"), the next number (2) tells Ruby the length of what we want returned (meaning,
|
84 | 67 | # "2" has nothing to do with the index ).
|
85 | 68 |
|
86 |
| -puts |
87 |
| - |
88 | 69 | a1 = ["red", "green", "blue"]
|
89 | 70 | a2 = ["a", "b", "c"]
|
90 | 71 | a3 = [1, 2, 3]
|
|
0 commit comments