Sometimes, when reading Code written by others, I come across lines of code that I do not understand, for example this one:
 var acceptBtn = document.getElementById('saveBtn');
 (acceptBtn) && (acceptBtn.disabled = false);
What exactly is the meaning of the second line and why is it abbreviated like this?
 
     
     
     
    