Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

The pjs.dec() API converts a value to a packed decimal number.

...

Code Block
languagejavascript
pjs.define("d1", { type: 'date', dateFormat: '*eur', initValue: pjs.date('2016-06-15') });
pjs.define("p1", { type: 'packed decimal', length: 10, decimals: 0 });

p1 = pjs.dec(d1);
 
return p1;
//15062016

...


RPG Equivalent

%DEC()