var abc = jQuery.extend({'a':'b'}, {'c':'d'},{'e':'f'}); console.log(abc.c);
Object { a="b", c="d", e="f"}