Copyright © tutorialspoint.com
This method causes a string to blink as if it were in a BLINK tag.
string.blink( ) |
Here is the detail of parameters:
NA:
Returns the string with <blink> tag.
<html> <head> <title>JavaScript String blink() Method</title> </head> <body> <script type="text/javascript"> var str = new String("Hello world"); alert(str.blink()); </script> </body> </html> |
This will produce following result:
<blink>Hello world</blink> |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com