Technically those are objects, not dictionaries. Edit: As has been pointed out, objects, and dictionaries are technically equivalent and are just key value pairs. My original comment just reflected that the terminology used to refer to them in JavaScript is objects, so you'll have an easier time searching for information on JavaScript objects than JavaScript dictionaries.
I'm guessing you're coming from python? Objects can't have more than one value with the same key, so that object is invalid in JavaScript.
Edit: Also, those aren't jquery variables. There's no such thing as jQuery variables. I think you're misreading how people use jquery. They actually use the $ which is the jQuery selector, and invoke it with the () passing in an object to turn that object into a jQuery object. so it's not $myObject, it's $(myObject).