...

/

Assignment Operators

Assignment Operators

Get introduced to assignment operators in Dart.

Overview

Assignment operators are used for performing operations that assign a value to an operand. They are modified versions of all the operators we have discussed so far and the operators we have yet to discuss.

We have already seen how the = operator can be used to assign values; we’ve been using it since the start of this course.

In this lesson, we will be focusing on compound assignment ...