El mètode toString()
retorna un string que representa l'objecte especificat.
Sintaxi
str.toString()
Descripció
L'objecte String
sobreescriu el mètode toString()
de l'objecte Object
; no hereta Object.prototype.toString()
. Per a objectes String
, el mètode toString()
retorna un string que representa l'objecte i és el mateix que el que el retornat pel mètode String.prototype.valueOf()
.
Exemples
Utilitzar toString()
L'exemple següent mostra el valor d'un objecte String
:
var x = new String('Hello world'); console.log(x.toString()); // mostra 'Hello world'
Especificacions
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 3rd Edition (ECMA-262) | Standard | Definició inicial. Implementat a 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 |
Compatibilitat amb navegadors
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Característica | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Suport bàsic | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |