JavaScript Basics
JavaScript Objects
JavaScript Advanced
JS Useful References
JS Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Javascript String - strike() Method
Description:
This method causes a string to be displayed as struck-out text, as if it were in a <strike> tag.
Syntax:
Here is the detail of parameters:
Return Value:
Example:
<html>
<head>
<title>JavaScript String strike() Method</title>
</head>
<body>
<script type="text/javascript">
var str = new String("Hello world");
alert(str.strike());
</script>
</body>
</html>
|
This will produce following result:
<strike>Hello world</strike>
|
To understand it in better way you can Try it yourself.
|
|
|