This talk opened the Learn JavaScript Deeply Track at WordCamp Miami. We break down some of the core JavaScript language basics and then get into the DOM and Events APIs.
let a = document.createElement('a'); let text = document.createTextNode('Link text'); a.appendChild( text ); a.href = "https://link.com" p.appendChild( a );