You have already completed these exercises!
Do you want to take them again?
You completed the JS HTML DOM Event Listener Exercises from W3Schools.com
Share on:
What is a legal syntax for executing a function called 'myfunc' when the browser window resizes?
window.listen('resize', myfunc);
window.addEventListener('resize', myfunc);
window.addEvent('resize', myfunc);
window.execute(myfunc, 'resize');