SyntaxFix
Write A Post
Hire A Developer
Questions
+= is just a shortcut for writing
+=
number = 4 number = number + 1
So instead you would write
numbers = 4 numbers += 1
Both ways are correct but example two helps you write a little less code