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

OperatorFunctionExample
+AdditionmyVariable = (x + y)
-SubtractionmyVariable = (x - y)
*Multiplicationx=(myVariable * y)
/DivisionmyVariable = ( x1 / x2 )
%ModulusmyRemainder = x % y (produces the remainder)
++Incrementfor (i = 0; i < 10; i++)
--Decrementfor (i = 0; i < 10; i--)

Assignment Operators

OperatorExampleAlternate 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

OperatorDescriptionExample
== 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) {}

An image of some JavaScript

JavaScript Operators


Other Projects:

Adobe JavaScripts ↑↓

Adobe Creative Suite Tutorials ↑↓