What is the output of this code?
const now = new Date(); const past = new Date(2020, 0, 1); console.log(now > past);
True
False
Undefined
Error