var buttonClickHandler = function (event) { // What is `event.target` referencing? // TODO: Write your answer here var language = event.target.getAttribute('data-language'); //event target uses get attribute from the // Why is this `if` block in place? // TODO: Write your answer here if (language) { getFeaturedRepos(language); repoContainerEl.textContent = ''; } };
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter