undefined-box

Results 1 comments of undefined-box

Hi there! Yes, the double click event exists; here are two possible implementations: (from MDN). ``` addEventListener('dblclick', (event) => {}); ondblclick = (event) => { }; ``` And here some...