> For the complete documentation index, see [llms.txt](https://jmdash.gitbook.io/jmdash-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jmdash.gitbook.io/jmdash-docs/jmbasics/syntax101/variable-modification.md).

# Variable Modification

## Syntax examples

Here are some possible examples + their syntax

* **Additioning** a value of `1` to an integer:\
  `myInteger<+1;`
* **Subtracting** a value of `1` to an integer:\
  `myInteger<-1;`
* **Multiplying** a value of `1` to an integer:\
  `myInteger<*1;`
* **Dividing** an integer by `1`:\
  `myInteger</1;`
