Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

The date.extractDay() method returns the day portion of a date or timestamp.

Parameters
  1. Length (optional)
  2. Decimals (optional)

Return Value

The number of days in a date or timestamp

Example
pjs.define("date", { type: 'date', initValue: '2017-01-25'});
pjs.define("num", { type: "zoned", length: 7, decimals: 2});
  
num = date.extractDay();

return num;
// 25

RPG Equivalent

EXTRCT

  • No labels