What is the size or length of "Number" datatype used in mongoose schema? What is the size or length of "Number" datatype used in mongoose schema? mongoose mongoose

What is the size or length of "Number" datatype used in mongoose schema?


Depending on what you set the property to for an initial value, Number is either a 32-bit integer or a 64-bit float in the MongoDB document.

But storing phone numbers as actual numbers is typically a bad idea. Better to store them as strings to accommodate phone numbers of arbitrary length.