Propiedad bufferDepth del DOM de HTML
Definición y uso
La propiedad bufferDepth establece o devuelve la profundidad de bits del paleta en el buffer de bitmap fuera de pantalla.
Gramática
screen.bufferDepth=number
Ejemplo
<html> <body> <script type="text/javascript"> document.write("<p>Profundidad de búfer: ") document.write(screen.bufferDepth + "</p>") </script> </body> </html>