less than 1 minute read

У объекта - property = свойства

Функции внутри объекта - методы

Функция - параметры и аргументы параметры - переменные, передаваемые в функцию. func(x, y) аргументы - значения, передаваемые в функцию. func(5, 3)

MongoDB

Instead of tables, a MongoDB database stores its data in collections. A collection holds one or more BSON documents. Documents are analogous to records or rows in a relational database table. Each document has one or more fields; fields are similar to the columns in a relational database table.

table = collection

row = document

fields = columns

MongoDB vs SQL terms