The JavaScript Assignment Operators are:

i = j assigns the value of j to i
i += j assigns the value of i+j to i
i -= j assigns the value of i-j to i
i *= j assigns the value of i*j to i
i /= j assigns the value of i/j to i
i %= j assigns the value of i%j to i