Descripción
Este método hace que una cadena se muestre en una fuente grande como si estuviera en una etiqueta GRANDE.
Sintaxis
La sintaxis para usar big () es la siguiente:
string.big( )
Valor devuelto
Devuelve la cadena que tiene <big> etiqueta.
Ejemplo
Pruebe el siguiente ejemplo.
<html>
<head>
<title>JavaScript String big() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.big());
</script>
</body>
</html>
Salida
<big>Hello world</big>