Skip to content

Instantly share code, notes, and snippets.

@hasssan
Created March 21, 2017 04:56
Show Gist options
  • Save hasssan/837d477fdc3fa3744d391c54ea72bf28 to your computer and use it in GitHub Desktop.
Save hasssan/837d477fdc3fa3744d391c54ea72bf28 to your computer and use it in GitHub Desktop.
log FormData
// source stackoverflow
const form = new window.FormData()
for (let pair of form.entries()) {
console.log(`${pair[0]}: ${pair[1]}`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment