a collection of items. @zgordon let postIds = [ 1, 7, 14, 34, 88, 117 ]; for ( let i = 0, max = postIds.length; i < max; i++ ) { console.log( 'Post #' + postIds[ i ] ); }
• Keyboard events • Form events • Media events • Drag and Drop events • Window events • Many more…. https://javascriptforwp.com/intro-to-events/ WordCamp DC 2017
Inline in HTML 2. Global 1 Off 3. Listeners Best <a onclick="alert('hi')">Alert</a> a.onclick = sayHi a.addEventListener( 'click’, sayHi, false ) WordCamp DC 2017