Not sure where to start?
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review command in your #code-reviews channel
/review
Karma
scrimba
let myLeads = []const inputEl = document.getElementById("input-el")const inputBtn = document.getElementById("input-btn")// Push the value "www.awesomelead.com" to myArray when the input button is clickedinputBtn.addEventListener("click", function() { console.log("Button clicked!")})