mongodbHow to convert MongoDB ObjectId to string?
MongoDB ObjectId is a 12-byte BSON type used as a unique identifier for documents within a collection. It can be converted to a string using the toString() method.
Example code
const ObjectId = require('mongodb').ObjectId;
const id = new ObjectId();
const stringId = id.toString();
console.log(stringId);
Output example
5f3f9f9f9f9f9f9f9f9f9f9
Code explanation
const ObjectId = require('mongodb').ObjectId;: This line imports the ObjectId class from the mongodb package.const id = new ObjectId();: This line creates a new ObjectId instance.const stringId = id.toString();: This line converts the ObjectId instance to a string.console.log(stringId);: This line prints the string to the console.
Helpful links
More of Mongodb
- How to use transactions in MongoDB?
- How to use unwind in MongoDB?
- How to use regex in MongoDB?
- How to use MongoDB queue?
- What is MongoDB default port?
- How to check the version of MongoDB?
- How to check if array is empty in MongoDB?
- How to use hint in MongoDB?
- How to use triggers in MongoDB?
- How to join two collections in MongoDB?
See more codes...