Descrição
Este método faz com que uma string seja exibida em uma fonte pequena, como se estivesse em uma tag <small>.
Sintaxe
Sua sintaxe é a seguinte -
string.small( )
Valor de retorno
Retorna a string com a tag <small>.
Exemplo
Experimente o seguinte exemplo.
<html>
<head>
<title>JavaScript String small() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.small());
</script>
</body>
</html>
Resultado
<small>Hello world</small>