Skip to content

Instantly share code, notes, and snippets.

@WesleySmits
Created September 7, 2022 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WesleySmits/03986c8fbd1549a1b95170596450ea4e to your computer and use it in GitHub Desktop.
Save WesleySmits/03986c8fbd1549a1b95170596450ea4e to your computer and use it in GitHub Desktop.
Formdata: Initialising a FormData Object
// To initialize an empty object
const formData = new FormData();
// To initialize an object based on a form
const form = document.getElementById('newsletter-form');
const formData = new FormData(form);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment