英[blɪŋk] 美[blɪŋk]

vt.& vi.wink

vi.shining, flashing

n.blink; twinkle; for a moment ; Shine

Third person singular: blinks Present participle: blinking Past tense: blinked Past participle: blinked

javascript blink() method syntax

Function: Used to display flashing strings.

Syntax: stringObject.blink()

Comments: This method does not work in Internet Explorer.

javascript blink() method example

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

<script type="text/javascript">

    var str="Hello world!"
    document.write(str.blink())

</script>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance