--- title: String.prototype.fixed() slug: Web/JavaScript/Reference/Global_Objects/String/fixed tags: - Descontinuado - JavaScript - Prototipo - Referencia - String - fixed() - metodo translation_of: Web/JavaScript/Reference/Global_Objects/String/fixed ---
{{JSRef}} {{deprecated_header}}

O método fixed() cria um elemento HTML <tt> que faz com que uma string seja exibida em uma fonte de densidade fixa.

Sintaxe

str.fixed()

Valor retornado

Uma string que representa o elemento HTML <tt>.

Descrição

O método fixed() cria uma string dentro de uma tag <tt>:
"<tt>str</tt>".

Exemplos

Usando fixed()

O exemplo a seguir usa o método fixed() para alterar a formatação de uma string:

var worldString = 'Olá, mundo';
console.log(worldString.fixed()); // "<tt>Olá, mundo</tt>"

Especificações

Specification
{{SpecName('ESDraft', '#sec-string.prototype.fixed', 'String.prototype.fixed')}}

Compatibilidade com navegadores

{{Compat("javascript.builtins.String.fixed")}}

Veja também