## page was renamed from JavaScript/Objects = ECMAScript Objects = '''Objects''' are a core data type. <> ---- == Description == A basic collection of data passed by reference. {{{ const obj = { foo: 1, bar: { baz = 2, }, }; const shallow_copy = { ...obj }; const deep_copy = structuredClone(obj); }}} ---- CategoryRicottone