Last active
August 29, 2015 14:24
-
-
Save ivorpad/72161de1d3fc00148670 to your computer and use it in GitHub Desktop.
Hash To Array: Bloc.io
This file contains 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
def hash_to_array(hash = {}) | |
ary = [] | |
hash.each do |k, v| | |
ary << "#{k} is #{v}" | |
end | |
ary | |
end | |
hash_to_array({name: "Ivor"}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment