1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ハッシュの書き方のまとめ〜progate~

Last updated at Posted at 2018-11-24

#ハッシュの書き方まとめ

ハッシュの書き方のまとめ

ハッシュには以下の3通りの書き方があります。
最後の「キーがシンボルの書き方(省略形)」が一般的なので覚える

キーが文字列の書き方
{"name" => "Suzuki","age" => 21}


キーがシンボルの書き方
{:name => "Suzuki", :age => 21}


省略形のキーがシンボルの書き方
{name: "Suzuki",age: 21}
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?