I am using sequelize ORM of node js to connect to mysql database.
I am having a field named "dob (date of birth)" that is of type date.
When I am storing any value in that field it is storing properly, but while fetching it is giving one date less than the one that is there in the database.
For example, I am storing "1990-10-27" in the database and while fetching it is returning me "Fri Oct 26 1990 18:30:00 GMT+0000 (UTC)".
Can anybody please help me with this.