Assignment Operators

PHOTO EMBED

Tue Nov 02 2021 15:20:56 GMT+0000 (Coordinated Universal Time)

Saved by @bronxrock

let counter = 0;
//=> undefined

counter += 10;
//=> 10

counter -= 2;
//=> 8

counter *= 4;
//=> 32

counter /= 2;
//=> 16

counter %= 6;
//=> 4

counter **= 3;
//=> 64
content_copyCOPY

https://learning.flatironschool.com/courses/4608/assignments/149882?module_item_id