How to read two ternary operators

If a ternary operator reads if-then-else, how do two of them read as in:

document.getElementById('cursorY').value = (window.Event) ? e.pageY : event.clientY + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
 

Found the answer. Thanks for your time.