The blink() method displays a blinking string. This method returns the string embedded in the <blink> tag, like this:
The blink() method displays a blinking string. This method returns the string embedded in the <blink> tag, like this:
<blink>string</blink>
The HTML <blink> tag is obsolete.
string.blink()
None
A string embedded in the <blink> tag
Display a blinking text:
var str = "Hello World!"; var result = str.blink(); console.log(result);