Skip to content

Instantly share code, notes, and snippets.

@dmshvetsov
Created November 5, 2020 08:00
Show Gist options
  • Save dmshvetsov/bea3a5e30274177e757945cedcc2da6f to your computer and use it in GitHub Desktop.
Save dmshvetsov/bea3a5e30274177e757945cedcc2da6f to your computer and use it in GitHub Desktop.
/*
//so far we've worked with some basic operators
Positive and negative operators (unary)
+
-
Arithmetic (binary)
+
-
/
*
%
Increment Decrement Operators (unary)
++
--
Assignment Operators (binary)
=
+=
-=
/=
*=
%=
Comparison Operators (binary)
==
!=
<
>
<=
>=
Logical operators (binary)
&&
||
!
Conditional operator (ternary)
? :
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment