...
Code Block | ||
---|---|---|
| ||
pjs.define("a", { type: "integer" }); pjs.define("b", { type: "integer", initValue: 15 }); pjs.define("c", { type: "integer", intiValue: 5 }); a = b / c; pjs.log(4, "a = b / c;", ["a", "b", "c"]); // The following will be send to the console // 4: a = b / c; // a=3, b=15, c=5 |