Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumHTMLfieldset legendSingle-choice MCQ

A <fieldset> wraps several inputs and you read its .elements property in JavaScript. What does that collection contain?

const fs = document.querySelector('fieldset'); console.log(fs.elements.length);