Javascript Assignment Operator with Example
Assignment Operator The followings are the assignment operator in javascript: Simple Assignment Additional Assignment Subtraction Assignment Multiplication Assignment Division Assignment Reminder Assignment Simple Assignment (=) This operator assigns the right operand value to the left operand. var a='apple', b='banana',c='cat'; Additional Assignment (+=) This operator adds the value of the right operand to a variable … Read more Javascript Assignment Operator with Example