Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
// MongoDB document example { "_id": ObjectId("5f43a0b6b31b28a9c2a4b5c1"), "name": "Alice Johnson", "email": "alice@example.com", "age": 29, "skills": ["JavaScript", "Python", "MongoDB"], "address": { "street": "123 Main St", "city": "New York", "country": "USA" }, "createdAt": ISODate("2024-01-15T10:30:00Z") } // MongoDB Shell Commands // Start MongoDB shell: mongosh // Show databases show dbs // Use/create database use myapp // Show collections show collections
Result
Open