|: Applies a filter to a variable.
Example of use:
~: Concatenates two values, usually strings.
Example of use:
.: Accesses a property or method of an object, or an element of an array.
Example of use:
[]: Accesses a specific element in a sequence (array).
Example of use:
?:: Ternary operator. Returns the value on the left if it is defined and not null; otherwise, returns the value on the right.
Example of use:
??: Checks if a value is defined and not null; otherwise, returns a default value.
Example of use: