I try to save a french number phone, ex : 060908...
This is my body request :
newAppointment.phone = req.body.phone;
My schema :
phone: {
type:Number,
required: true
}
and my data : 06
This return me an error : SyntaxError: Unexpected number. When i convert it to string it's remove the 0.
Answer : Use STRING.