Last active
February 7, 2017 07:07
-
-
Save fntsrlike/1ac78343303798674a5cf5a13963d407 to your computer and use it in GitHub Desktop.
Ruby Skills: 記錄一些 Ruby 技巧
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
# key-value to string | |
{a: 100, b: 200}.map{|k,v| "#{k}=#{v}"}.join('&') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment