The type read-only property of the SVGScriptElement interface reflects the type attribute of the given <script> element.
A string.
type property<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200">
<script id="myScript" href="script.js" type="text/javascript"></script>
</svg>const scriptElement = document.getElementById("myScript");
// Access the type property
console.log(scriptElement.type); // Output: "text/javascript"