Operators
The operators are used to perform arithmetic operations and make comparisons between many things. The following operators are reserved by Go language.
![](https://static.packt-cdn.com/products/9781788390552/graphics/image_01_001_02.jpg)
Most commonly used operators are the arithmetic operators and comparators. Arithmetic operators are as following:
The
+
operator for sumsThe
-
operator for subtractionsThe
*
operator for multiplicationsThe
/
operator for divisionsThe
%
operator for division remaindersThe
++
operator to add 1 to the current variableThe
--
operator to subtract 1 to the current variable
On the other side, comparators are used to check the differences between two statements:
The
==
operator to check if two values are equalThe
!=
operator to check if two values are differentThe
>
operator to check if left value is higher than right valueThe
<
operator to check if left value is lower than right valueThe
>=
operator to check if left value is higher or equal to right valueThe
<=
operator to check if left value is lower or equal to right valueThe...