La propiedad SVG Document.doctype devuelve el tipo de documento del documento.
Sintaxis:
doctype = document.doctype
Valor devuelto: esta propiedad devuelve el tipo de documento del documento.
Ejemplo:
HTML
<!DOCTYPE html> <html> <body> <svg width="350" height="500" xmlns="http://www.w3.org/2000/svg"> <script> console.log(document.doctype) </script> </svg> </body> </html>
Producción: