Chdestep(name) Last updated: 30. May 2026
Steps backwards on a counter.
Parameters
| Name | Type | Description |
|---|---|---|
| name | string | Name of variable to change. |
Returns
Nothing, just decrements the variable.
Example
Code example (#JS)
#JS is mixed HTML (or other text file) with inline JavaScript with # starting and ending each inline statement.#{
chinit("counter1");
chstep("counter1");
chstep("counter1");
}#
Counter value is: #counter1#
#{
chdestep("counter1");
}#
Counter value is: #counter1# Output
The #JS code above produces the output shown below:
Counter value is: 2
Counter value is: 1