1/3
This set of flashcards covers standard JavaScript assignment operators and shorthand addition as described in the lecture script.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
/= division assignment
An operator used to divide the variable on the left by the value of the right operand.
number =100
The initial value assigned to the variable in the provided example code.
number +=10
A shorthand statement equivalent to number =number +10.
120
The output printed by console.log(number) after adding 10 to its initial value of 100 twice.