Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumHTMLdatalist outputSingle-choice MCQ

An <output> element is given a name and sits inside a form. After the user submits the form, is the output's value sent to the server?

<form action="/calc"> <input name="x" value="2"> <output name="result">4</output> <button>Send</button> </form>