SIGN IN SIGN UP

Login to your account

Username or Email *
Password *
Remember Me
Apex Beginner Progress | ( Lessons)
%

Lesson: 15 | Assignment Operators


= sign is an assignment operator and it assigns a value to a variable.


x+=3 is  same as x=x+3:


x-=3 is  same as x=x-3:


x *= 3  is  same as x = x * 3:


x /= 3  is  same as x = x / 3:


Prev You need to login to have access to the quizzes. Next

Mastered by 217 users.

Apex Beginner

A. Apex Fundamentals (23 lessons)
B. Apex Collections (6 lessons)
Go to top