JS: Console.log View Form Data

Miva Knowledge Base
Want to start an online store? We work with you from start to finish, from commerce platform to design to SEO.
Experience counts, and we have a lot.
This Miva knowledge base is a bunch of random code and other info used by Scot's Scripts and other developers.

Important Notice: Information here is not intended for public use. Use at your own risk.

JS: Console.log View Form Data

Scot Ranney • December 19, 2023


for (var pair of formData.entries()) {
	console.log(pair[0]+ ', ' + pair[1]+ ', ' + pair[2]+ ', ' + pair[3]+ ', ' + pair[4]+ ', ' + pair[5]); 
}

https://www.scotsscripts.com/mvblog/js-consolelog-view-form-data.html

mvkb_js