Created
July 26, 2022 06:40
-
-
Save shun0211/a955e8392c085ca9d339629359deaf6a to your computer and use it in GitHub Desktop.
hashの[]メソッドについてメモ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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