Copyright © tutorialspoint.com
This method causes a string to be italic, as if it were in an <i> tag
string.italics( ) |
Here is the detail of parameters:
NA
Returns the string with <i> tag.
<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>
|
This will produce following result:
<i>Hello world</i> |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com