Skip to main content

Use Operators

What are operators

Use Operators to combine any number of Conditions using logical operators. For example, To draw the points with an even column AND odd row indices:

grid.every(
(point) => orangeCircle(point.x, point.y),
and(evenCols(), oddRows())
);

operators

Existing Operators

andLogical AND
orLogical OR
notLogical NOT