Note | ||
---|---|---|
| ||
As of July 25th, 2023, there is a content freeze on this page. |
The date.extractDay() API returns the day portion of a date or timestamp.
...
Code Block | ||
---|---|---|
| ||
pjs.define("date", { type: 'date', initValue: '2017-01-25'}); pjs.define("num", { type: "zoned", length: 7, decimals: 2}); num = date.extractDay(); return num; // 25 |
...