I have two objects declared like so:
new {@class = "aClass", bar="bar"}
and
new{foo = "foo"}
How do i combine them so i get this result?
{@class = "aClass", bar="bar", foo = "foo"}
(in any order)
My goal is to combine extra html attributes in a custom htmlhelper.
Cheers