aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/javascript/reference/global_objects/number/tosource/index.html
blob: 985df99c0ac166a7b13a8ab0895c989218dea6f4 (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
---
title: Number.prototype.toSource()
slug: Web/JavaScript/Reference/Global_Objects/Number/toSource
tags:
  - JavaScript
  - Method
  - Number
  - Prototype
translation_of: Web/JavaScript/Reference/Global_Objects/Number/toSource
---
<div>{{JSRef}} {{non-standard_header}}</div>

<p>Die <strong><code>toSource()</code></strong> Methode gibt einen string zurück, der den Quelltext des Objektes repräsentiert.</p>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox"><var>numObj</var>.toSource()
Number.toSource()</pre>

<h3 id="Rückgabewert">Rückgabewert</h3>

<p>Einen String, der den Quelltext des Objektes repräsentiert.</p>

<h2 id="Beschreibung">Beschreibung</h2>

<p>Die <code>toSource()</code> gibt die folgenden Werte zurück:</p>

<p>Für das globale Standardobjekt {{jsxref("Number")}} gibt <code>toSource()</code> den folgenden string zurück, um anzuzeigen, dass der Quelltext nicht verfügbar ist:</p>

<pre class="brush: js">function Number() {
    [native code]
}
</pre>

<p>Für Instanzen von {{jsxref("Number")}}, gibt <code>toSource()</code> einen string mit dem Quelltext zurück.</p>

<p>Diese Methode wird intern von JavaScript aufgerufen und wird nicht im Quelltext von Webseiten verwendet.</p>

<h2 id="Spezifikationen">Spezifikationen</h2>

<p>Ist in keinem 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.Number.toSource")}}</p>

<h2 id="Siehe_auch">Siehe auch</h2>

<ul>
 <li>{{jsxref("Object.prototype.toSource()")}}</li>
</ul>