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