scrimba
Frontend Career Path
Making websites interactive
Build a Mobile App
Aside: Firebase Realtime Database
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

Aside: Firebase Realtime Database
AboutCommentsNotes
Aside: Firebase Realtime Database
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} added to database`)
})
Console
/index.html
-10:01