SyntaxFix
Write A Post
Hire A Developer
Questions
tags.map(&:name)
is The same as
tags.map{|tag| tag.name}
&:name just uses the symbol as the method name to be called.
&:name