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")inputBtn.addEventListener("click", function() { myLeads.push(inputEl.value) console.log(myLeads)})// Log out the items in the myLeads array using a for loop