To tłumaczenie jest niekompletne. Pomóż przetłumaczyć ten artykuł z języka angielskiego.
Wycofywany
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.
Podsumowanie
Powoduje wyświetlenie łańcucha znaków jako pogrubienia, jakby był w znaczniku <b>
.
Składnia
str.bold()
Opis
The bold()
method embeds a string in a <b>
tag: "<b>str</b>"
.
Przykłady
Przykład: Zastosowanie bold()
Następujący przykład stosuje metodę string do zmiany rozmiaru łańcucha znaków:
var worldString="Witaj, Świecie"; console.log(worldString.blink()); // <blink>Witaj, Świecie</blink> console.log(worldString.bold()); // <bold>Witaj, Świecie</bold> console.log(worldString.italics()); // <i>Witaj, Świecie</i> console.log(worldString.strike()); // <s>Witaj, Świecie</s>