Answers for ":echo has('ruby')"

0

ruby hash print

require 'pp'
pp my_hash
Posted by: Guest on September-07-2020
0

ruby check if hash has method before calling it

# Use .try(:key) to conditionally access hash keys or methods
attr = my_hash.try(:key1)

# You can chain together multiple try()'s
attr = my_hash.try(:key1).try(:key2)

# If you want to access a value in a hash value you can use ternary operators
attr = my_hash.try(:key1) ? my_hash.key1["key2"] : nil
Posted by: Guest on November-25-2020

Browse Popular Code Answers by Language