diff options
Diffstat (limited to 'files/fr/web/javascript/reference/global_objects/string/index.html')
-rw-r--r-- | files/fr/web/javascript/reference/global_objects/string/index.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/files/fr/web/javascript/reference/global_objects/string/index.html b/files/fr/web/javascript/reference/global_objects/string/index.html new file mode 100644 index 0000000000..808d99008b --- /dev/null +++ b/files/fr/web/javascript/reference/global_objects/string/index.html @@ -0,0 +1,39 @@ +--- +title: ByteString +slug: Web/JavaScript/Reference/Global_Objects/String +tags: + - API + - DOM + - Reference + - WebIDL +translation_of: Web/API/ByteString +original_slug: Web/API/ByteString +--- +<div>{{APIRef("DOM")}}</div> + +<p><strong><code>ByteString</code></strong> est une chaîne de caractères en UTF-8 qui contient l'ensemble des séquences d'octets possibles. <code>ByteString</code> correspond à une chaîne de caractères (type {{jsxref("String")}}) lorsqu'il est manipulé en JavaScript. En général, cet objet est uniquement utilisé dans l'interfaçage de protocoles qui utilisent les octets et les chaînes de façon interchangeable (HTTP par exemple).</p> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spécification</th> + <th scope="col">État</th> + <th scope="col">Commentaires</th> + </tr> + <tr> + <td>{{SpecName('WebIDL', '#idl-ByteString', 'ByteString')}}</td> + <td>{{Spec2('WebIDL')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{jsxref("String")}}</li> + <li><a href="/fr/docs/Web/JavaScript/Typed_arrays/String_view"><code>StringView</code> – une représentation des chaînes de caractères, semblable à celle utilisée par le langage C, basée sur les tableaux typés</a></li> + <li><a href="/fr/docs/Web/API/DOMString/Binary">Les chaînes binaires</a></li> +</ul> |