files/en-us/web/api/htmloutputelement/value/index.md
{{ APIRef("HTML DOM") }}
The value property of the {{DOMxRef("HTMLOutputElement")}} interface represents the value of the {{htmlelement("output")}} element as a string, or the empty string if no value is set. It returns or sets the contents of the element, similar to the {{domxref("Node.textContent","textContent")}} property.
[!NOTE] When the
valueproperty of an<output>element is set, the element goes into value mode and the default value is accessible only through the {{DOMXref("HTMLOutputElement.defaultValue")}} property.
A string containing the contents of the {{htmlelement("output")}} element.
const outputElement = document.getElementById("log");
console.log(`value: ${outputElement.value}`);
{{Specifications}}
{{Compat}}