Skip to content

Instantly share code, notes, and snippets.

@shun0211
Created July 26, 2022 06:40
Show Gist options
  • Select an option

  • Save shun0211/a955e8392c085ca9d339629359deaf6a to your computer and use it in GitHub Desktop.

Select an option

Save shun0211/a955e8392c085ca9d339629359deaf6a to your computer and use it in GitHub Desktop.
hashの[]メソッドについてメモ
hash = {a: 'a', b: 'b'}
# Hashクラスには[]メソッドがある。
# 普通、hash[:a]のように使う。
# []メソッドなので、下のように書ける。
hash.[] 'a'
# => 'a'
hash.[]('a')
# => 'a'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment