...
Note | ||
---|---|---|
| ||
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 | ||
---|---|---|
| ||
function test1() { pjs.session.abc = 123; pjs.call("test2"); } exports.run = test1; |
...