Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

String.prototype.toString()

Esta tradução está incompleta. Ajude atraduzir este artigo.

O método toString() retorna uma string representando o objeto especificado.

Sintaxe

str.toString()

Descrição

O objeto String sobrescreve o método toString() do objeto Object ; ele não herda de Object.prototype.toString(). Para objetos String, o método toString() retorna uma representação string do objeto e á mesma representação retornada pelo método String.prototype.valueOf().

Exemplos

Usando toString()

O exemplo a seguir exibe o valor string de um objeto String:

var x = new String('Hello world');

console.log(x.toString()); // logs 'Hello world'

Especificações

Especificação Estado Comentário
ECMAScript 3rd Edition (ECMA-262) Standard Definição inicial. Implementado no  JavaScript 1.1.
ECMAScript 5.1 (ECMA-262)
The definition of 'String.prototype.toString' in that specification.
Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'String.prototype.toString' in that specification.
Standard  
ECMAScript 2016 Draft (7th Edition, ECMA-262)
The definition of 'String.prototype.toString' in that specification.
Draft  

Compatibilidade em navegadores

Funcionalidade Chrome Firefox (Gecko) Internet Explorer Opera Safari
Suporte básico (Yes) (Yes) (Yes) (Yes) (Yes)
Funcionalidade Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Suporte básico (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

Veja também

Etiquetas do documento e colaboradores

 Colaboradores desta página: mfelippi
 Última atualização por: mfelippi,