Source code
Revision control
Copy as Markdown
Other Tools
// |reftest| skip-if(!this.hasOwnProperty("Temporal"))
if (0) {
let date = Temporal.PlainDate.from({
calendar: "islamic-umalqura",
year: -6823,
monthCode: "M01",
day: 1,
});
assertEq(date.day, 1);
}
if (typeof reportCompare === "function")
reportCompare(true, true);