Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ What Is MongoDB? | Section
Working with MongoDB in Express Applications

bookWhat Is MongoDB?

メニューを表示するにはスワイプしてください

MongoDB is a database used to store data for backend applications.

Instead of storing data in tables like traditional databases, MongoDB stores data in documents.

A document is a structure that looks like a JavaScript object:

{
  name: 'John',
  age: 25
}

Documents are grouped into collections. A collection is similar to a table, but it stores flexible data instead of fixed columns.

For example:

  • Collection: users;
  • Document: { name: 'John', age: 25 }.

MongoDB uses a JSON-like format, which makes it easy to work with in JavaScript applications.

This makes it a natural choice when building backends with Node.js and Express.

question mark

How does MongoDB store data?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  2

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 1.  2
some-alt