Niestandardowy
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
Podsumowanie
Zwraca łańcuch znaków reprezentujący kod źródłowy tablicy.
Składnia
arr.toSource()
Parametry
Brak.
Opis
Metoda toSource
zwraca następujące wartości:
This shouldn't be here, but until reorganization where pages are moved to their proper places, the title of this article is ambiguous, so it can stay. After reorganization, this should be removed.
- Dla wbudowanego obiektu
Array
,toSource
zwraca następujący łańcuch znaków sygnalizując, że kod źródłowy jest niedostępny:function Array() { [natywny kod] }
- Dla instancji
Array
,toSource
zwraca łańcuch znaków reprezentujący kod źródłowy.
Metoda ta jest zazwyczaj wywoływana wewnętrznie przez JavaScript, a nie bezpośrednio w kodzie. Możliwe jest wywołanie toSource
podczas debugowania, aby zbadać zawartość tablicy.
Przykłady
Przykład: Sprawdzanie kodu źródłowego tablicy
Do sprawdzania kodu źródłowego tablicy:
var alpha = new Array("a", "b", "c"); alpha.toSource() //zwraca ["a", "b", "c"]