Which of the below statements is equivalent to $add += $add ?
Which of the below statements is equivalent to $add += $add ? Correct Answer $add = $add +$add
a += b is an addition assignment whose outcome is a = a + b. Same can be done with subtraction,multiplication,division etc.