How can you use PHP’s Dot Equals .= operator in Javascript?
How can you use PHP’s Dot Equals .= operator in Javascript?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What you are mentioning is a contatenation equals operator which sets the value of the left hand operand to a string containing a concatenation of its value appended with the string in the right hand operand.
You can do the same operation in javascript using the
+=operator.