Chaîne JavaScript - méthode bold ()
La description
Cette méthode entraîne l'affichage d'une chaîne en gras comme si elle était dans un <b> marque.
Syntaxe
La syntaxe de la méthode bold () est la suivante -
string.bold( )
Valeur de retour
Renvoie la chaîne avec <bold> marque.
Exemple
Essayez l'exemple suivant.
<html>
<head>
<title>JavaScript String bold() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.bold());
</script>
</body>
</html>
Production
<b>Hello world</b>