... select items that return true. scores = { jane: 98, toby: 67, mary: 89, jim: 54 } scores.select { |key, value| value > 90 } # => {:jane => 98} ...
確定! 回上一頁