freeCodeCamp/guide/arabic/miscellaneous/learn-about-ruby-hashes/index.md

1.3 KiB

title localeTitle
Learn About Ruby Hashes تعرف على روبي هاشز

الأساسيات:

  • تجدر الإشارة إلى أن روبي تجاورها كائنات جافا سكريبت أو قواميسها بلغات مثل بايثون.
  • تحتوي العناصر على عناصر يتم تخزينها بواسطة key: value أزواج key: value .
  • يمكن إنشاء تجزئات Ruby باستخدام الطرق التالية:
    • my_hash = {}
    • my_hash = Hash.new
  • هناك العديد من الطرق المضمنة في Ruby للعثور على معلومات وتحديثات التجزئة.

أمثلة:

`my_hash = {'name' => 'Batman', 'age' => 25}

is equivalent to:

my_hash = Hash.new my_hash'name'] = 'Batman' my_hash['age'] = 25

Both of these examples return:

{"name"=>"Batman", "age"=>25}

here is an alternative way to create the array:

{name: 'Batman', age: 25}

this example return:

{:name=>"Batman", :age=>25}

learn more about [symbols here

`

المراجع: