The SVG ScriptElement.type property returns an SVGAnimatedLength object corresponding to the attribute of the given script element.
Syntax:
ScriptElement.type
Return value: This property returns SVGAnimatedLength object that can be used to get the type of the script element.
Example 1:
<!DOCTYPE html>
<html>
<body>
<script type="text/javascript">
console.log('GeeksforGeeks')
</script>
</body>
</html>
Output:
Example 2:
<!DOCTYPE html>
<html>
<body>
<script type="text/ecmascript">
document.write('GeeksforGeeks')
</script>
</body>
</html>
Output: