There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
Agree with a comment or answer? Like () to up-vote the contribution!
Whilst trying to convert the example into a hash, I found a way around “JavaScript” not working with .capitalize! :
answer = {
Ruby: "Ruby is great for web apps!",
Python: "Python is great for science.",
JavaScript: "JavaScript makes websites awesome.",
HTML: "HTML is what websites are made of!",
CSS: "CSS makes websites pretty.",
}
puts "What's your favorite language again?"
language2 = gets.chomp
language2.downcase!
case language2
when "ruby"
language2.capitalize!
when language2.length > 4
language2.capitalize!
when "javascript"
language2.capitalize!
language2.gsub!("s", "S")
else
language2.upcase!
end
puts answer["#{language2}".to_sym]