This website contains various projects I have worked on. Currently, this includes JavaScripts for Adobe applications and general produciton tutorials using Adobe Creative Suite applications. All projects can be accessed from the right-hand menu.
JavaScript Operators
Arithmetic Operators
| Operator | Function | Example |
| + | Addition | myVariable = (x + y) |
| - | Subtraction | myVariable = (x - y) |
| * | Multiplication | x=(myVariable * y) |
| / | Division | myVariable = ( x1 / x2 ) |
| % | Modulus | myRemainder = x % y (produces the remainder) |
| ++ | Increment | for (i = 0; i < 10; i++) |
| -- | Decrement | for (i = 0; i < 10; i--) |
Assignment Operators
| Operator | Example | Alternate use |
| = |
x=y |
x=y |
| += |
x+=y |
x=x+y |
| -= |
x-=y |
x=x-y |
| *= |
x*=y |
x=x*y |
| /= |
x/=y |
x=x/y |
| %= |
x%=y |
x=x%y |
Comparison Operators
| Operator | Description | Example |
| == |
is equal to |
1==3 returns false |
| === |
is equal to (checks for both value and type) |
"1"===1 returns false |
| != |
is not equal |
1!=2 returns true |
| > |
is greater than |
1>2 returns false |
| < |
is less than |
1<2 returns true |
| >= |
is greater than or equal to |
1>=2 returns false |
| <= |
is less than or equal to |
1<=2 returns true |
Logical Operators
| Operator |
Description |
Example |
| && |
and |
(x < 25 && y > 15) |
| || |
or |
(x < 25 || y > 15) |
| ! |
not |
if (x != y) {} |