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.


Refers to an object containing session data. Session data can be shared between program calls within a user session. 


Example

Code Block
languagejavascript
function test1() {   
  pjs.session.abc = 123;  
  pjs.call("test2");
}
exports.run = test1;

...