I cant seem to wrap my head around the first part of this code ( += ) in combination with the ternary operator.
h.className += h.className ? ' error' : 'error'
The way i think this code works is as following:
h.className = h.className + h.className ? ' error' : 'error'
But that isn't correct because that gives a error in my console.
So my question is how should i interpet this code correctly?
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…