In JavaScript you access a video's text track and set track.mode = 'hidden'. What is the effect compared to 'disabled' and 'showing'?const t = video.textTracks[0]; t.mode = 'hidden'; t.addEventListener('cuechange', onCue);