scrimba
Learn JavaScript
Build a Mobile App
Adding CSS
Go Pro!Bootcamp

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

AboutCommentsNotes
Adding CSS
Expand for more info
index.js
run
preview
console
const inputFieldEl = document.getElementById("input-field")
const addButtonEl = document.getElementById("add-button")

addButtonEl.addEventListener("click", function() {
let inputValue = inputFieldEl.value

console.log(inputValue)
})
Console
/index.html
-4:21