I have a React Web App and a React Native Mobile App. When I pass a moment date object from my react web app to my backend, it gets converted to a string somehow and it works wi
Use moment().format() to create a formatted string from the date.
console.log(moment().format())
But if you're using version 2.1.0+ (link), toString should work:
toString
console.log(moment().toString()) console.log(typeof moment().toString())