Chaîne JavaScript - méthode blink ()

La description

Cette méthode fait clignoter une chaîne comme si elle se trouvait dans une balise BLINK.

Syntaxe

La syntaxe de la méthode blink () est la suivante -

string.blink( )

Valeur de retour

Renvoie la chaîne avec <blink> marque.

Exemple

Essayez l'exemple suivant.

<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>

Production

<blink>Hello world</blink>