blob: 12764ae672a89332caf639643be60032ea6e5df0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
---
title: Date.prototype.toSource()
slug: Web/JavaScript/Reference/Global_Objects/Date/toSource
tags:
- Date
- JavaScript
- Method
- Prototype
- Reference
translation_of: Web/JavaScript/Reference/Global_Objects/Date/toSource
---
<div>{{JSRef}} {{non-standard_header}}</div>
<div>Die <strong><code>toSource()</code></strong> Methode gibt eine String Repräsentation des Quelltextes des Objektes zurück.</div>
<div> </div>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox"><var>dateObj</var>.toSource()
Date.toSource()</pre>
<h3 id="Rückgabewert">Rückgabewert</h3>
<p>Ein String, der den Quelltext des gegebenen {{jsxref("Date")}} Objekt repräsentiert.</p>
<h2 id="Beschreibung">Beschreibung</h2>
<p>Die <code>toSource()</code> Methode gibt die folgenden Werte zurück:</p>
<ul>
<li>Für das eingebaute {{jsxref("Date")}} Objekt, git die <code>toSource()</code> Methode den folgenden String zurück, der bedeutet, dass der Quelltext nicht verfügbar ist:
<pre class="brush: js">function Date() {
[native code]
}
</pre>
</li>
</ul>
<ul>
<li>Für Instanzen von {{jsxref("Date")}} gibt die <code>toSource()</code> Methode eine String Repräsentation des Quelltextes zurück.</li>
</ul>
<p>Diese Methode wird intern von JavaScript aufgerufen und wird nicht explizit im Quelltext eingesetzt.</p>
<h2 id="Spezifikationen">Spezifikationen</h2>
<p>Kein Standard. Implementiert in JavaScript 1.3.</p>
<h2 id="Browserkompatibilität">Browserkompatibilität</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("javascript.builtins.Date.toSource")}}</p>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>{{jsxref("Object.prototype.toSource()")}}</li>
</ul>
|