--- title: String.prototype.small() slug: Web/JavaScript/Referencje/Obiekty/String/small tags: - JavaScript translation_of: Web/JavaScript/Reference/Global_Objects/String/small ---
Powoduje to, że łańcuch znaków będzie wyświetlany małą czcionką, jakby znajdował się wewnątrz znacznika {{HTMLElement("small")}}.
str.small()
The small()
method embeds a string in a <small>
tag: "<small>str</small>"
.
small()
var worldString = "Witaj, Świecie"; console.log(worldString.small()); // <small>Witaj, Świecie</small> console.log(worldString.big()); // <big>Witaj, Świecie</big> console.log(worldString.fontsize(7)); // <fontsize=7>Witaj, Świecie</fontsize>