pxt-calliope/docs/js/operators.md

30 lines
1.1 KiB
Markdown
Raw Normal View History

## Operators
2016-11-02 01:44:37 +01:00
The following JavaScript operators are supported for the @boardname@.
2016-07-25 23:00:51 +02:00
### ~hint
2016-11-02 01:44:37 +01:00
Note that for the @boardname@ all arithmetic is performed on integers, rather than floating point.
This also is true when simulating in the browser.
2016-07-25 23:00:51 +02:00
### ~
# Assignment, arithmetic and bitwise
* assignment operators - [read more](http://devdocs.io/javascript/operators/assignment_operators)
* arithmetic operators - [read more](http://devdocs.io/javascript/operators/arithmetic_operators)
* bitwise operators - [read more](http://devdocs.io/javascript/operators/bitwise_operators)
# Comparision and conditional
* comparison operators - [read more](http://devdocs.io/javascript/operators/comparison_operators)
* conditional operator - [read more](http://devdocs.io/javascript/operators/conditional_operator)
## More
* lambda functions `() => { ... }`
* array literals `[1, 2, 3]`
* strings, with a few common methods
* [string templates](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) (`` `x is ${x}` ``)
2016-07-25 23:00:51 +02:00
### ~button /js/statements
NEXT: Statements
### ~