scrimba
Frontend Career Path
React basics
Meme generator
React forms intro
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
React forms intro
Expand for more info
index.js
run
preview
console
document.getElementById("my-form").addEventListener("submit", function(event) {
event.preventDefault()
const formElements = event.target.elements
const {firstName, lastName} = formElements
submitViaAPI({
firstName: firstName.value,
lastName: lastName.value
})
})

function submitViaAPI(data) {
console.log(data)
console.log("Submitted!")
}
Console
/index.html
-3:25