Files
30-seconds-of-code/glossary/Object.md
Angelos Chalaris 8e0d42b024 Add Object
2018-08-27 22:24:53 +03:00

273 B

Object

Objects are data structures that contain data and instructions for working with the data. Objects consist of key-value pairs, where the keys are alphanumeric identifiers and the values can either be primitives or objects. JavaScript functions are also objects.