Descrição
Este método faz com que uma string seja exibida no tamanho especificado, como se estivesse em um <font size = "size"> tag.
Sintaxe
Sua sintaxe é a seguinte -
string.fontsize( size )
Detalhes de Atributo
size - Um número inteiro entre 1 e 7, uma string que representa um número inteiro com sinal entre 1 e 7.
Valor de retorno
Retorna a string com a tag <font size = "size">.
Exemplo
Experimente o seguinte exemplo.
<html>
<head>
<title>JavaScript String fontsize() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.fontsize( 3 ));
</script>
</body>
</html>
Resultado
<font size = "3">Hello world</font>