Learn the fundamental concepts of computer programming
Operators are special symbols used to perform operations on variables and values.
+ (Add), - (Subtract), * (Multiply), / (Divide), % (Modulo/Remainder).= (Assign value), += (Add and assign).== (Equal to), != (Not equal to), > (Greater than), < (Less than).&& (AND), || (OR), ! (NOT).Edit the code below and click Run to see the result live.