web api instance property
SVGLength: value property
The value property of the SVGLength interface represents the floating point value of the <length> in user units.
Setting this attribute will cause valueInSpecifiedUnits and valueAsString to be updated automatically to reflect this setting.
Value
The length value in user units as a float.
Examples
// Get an SVGLength object
const svg = document.querySelector("svg");
const length = svg.createSVGLength();
// Set the value
length.value = 10;
console.log(length.value); // Output: 10
// Reflecting the value
length.value = 20;
console.log(length.value); // Output: 20
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.