Created
March 21, 2017 04:56
-
-
Save hasssan/837d477fdc3fa3744d391c54ea72bf28 to your computer and use it in GitHub Desktop.
log FormData
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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