blob: 97566f6d7dc3331a79eff02ced53f1bdc9f2313e [file] [log] [blame]
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-get-temporal.plainmonthday.prototype.day
description: Basic tests for day().
features: [Temporal]
---*/
const md = new Temporal.PlainMonthDay(1, 15);
assert.sameValue(md.day, 15);