aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/javascript/reference/global_objects/string/index.html
blob: 808d99008b23f01275e239a460ca931892512dea (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
---
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>