Ruby On Rails Questions et reponses d'entretien
Question : What is Range?Reponse :Range is a great way to declare continuous variables. You should use it to declare arrays and other types of collections. range1 = (1..4).to_a => [1, 2, 3, 4] puts range1 1 2 3 4 You can also create strings in this format and it fills in the interim values automatically. range2 = ('bar'..'bat').to_a
puts range2
bar
bas
batSince the end result of using range is an array you can also iterate over it just like any other array. range2.each do |str|
puts "In Loop #{str}"
end
This produces the result as shown below: In Loop bar In Loop bas In Loop bat |
Enregistrer pour revision
Ajoutez cet element aux favoris, marquez-le comme difficile ou placez-le dans un ensemble de revision.
Connectez-vous pour enregistrer des favoris, des questions difficiles et des ensembles de revision.
Les plus utiles selon les utilisateurs :
- What is Ruby On Rails?
- Why Ruby on Rails?
- Explain how (almost) everything is an object in Ruby.
- What are Gems and which are some of your favorites?
- How would you declare and use a constructor in Ruby?