What does |= do in Javascript? -
this question has answer here: what “|=” mean? (pipe equal operator) 6 answers while trying fix bug in person's code, found line: affiliationdata.affiliationstatuses |= affiliationstatuses.affiliatedwithcurrentcrmuser; what do? tried find on mdn, searching |= returns 0 results . bitwise or assignment shorthand operator: x |= y meaning: x = x | y source