The new Big Sur does not recognise date if you parse it as
console.log( new Date("2019-1-12") )
The new Big Sur does not recognise date if you parse it as
console.log( new Date("2019-1-12") )
The new Big Sur does not recognise date if you parse it as new Date("2019-1-12")
but it recognise the date if you parse it as new Date("2019-01-12")
the so in simple terms month should be 01
instead of 1
same thing happens with day should be 01
instead of 1
fixed it now also