scrimba
Frontend Career Path
Essential JavaScript concepts
Cookie Consent
Aside: FormData methods
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
Aside: FormData methods
Expand for more info
index.js
run
preview
console
const loginForm = document.getElementById('login-form')

loginForm.addEventListener('submit', function(e){
e.preventDefault()
const loginFormData = new FormData(loginForm)

})
Console
/index.html
-3:22