Assignment Operators

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/3

flashcard set

Earn XP

Description and Tags

This set of flashcards covers standard JavaScript assignment operators and shorthand addition as described in the lecture script.

Last updated 3:59 PM on 8/14/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

4 Terms

1
New cards

/= division assignment/=\text{ division assignment}

An operator used to divide the variable on the left by the value of the right operand.

2
New cards

number =100\text{number } = 100

The initial value assigned to the variable in the provided example code.

3
New cards

number +=10\text{number } += 10

A shorthand statement equivalent to number =number +10\text{number } = \text{number } + 10.

4
New cards

120120

The output printed by console.log(number)\text{console.log(number)} after adding 1010 to its initial value of 100100 twice.