aboutsummaryrefslogtreecommitdiff
path: root/files/fr/glossary/identifier
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:36:08 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:36:08 +0100
commit39f2114f9797eb51994966c6bb8ff1814c9a4da8 (patch)
tree66dbd9c921f56e440f8816ed29ac23682a1ac4ef /files/fr/glossary/identifier
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.gz
translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.bz2
translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.zip
unslug fr: move
Diffstat (limited to 'files/fr/glossary/identifier')
-rw-r--r--files/fr/glossary/identifier/index.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/files/fr/glossary/identifier/index.html b/files/fr/glossary/identifier/index.html
new file mode 100644
index 0000000000..9567c0bca3
--- /dev/null
+++ b/files/fr/glossary/identifier/index.html
@@ -0,0 +1,20 @@
+---
+title: Identificateur
+slug: Glossaire/Identifiant
+tags:
+ - Débutant
+ - Glossaire
+ - Partage
+translation_of: Glossary/Identifier
+---
+<p>Une séquence de caractères dans le code qui identifie une <strong>{{glossary("Variable","variable")}}, une {{glossary("Function","fonction")}}, ou une {{glossary("Property","propriété")}}</strong>.</p>
+
+<p>En {{glossary("JavaScript")}}, les identifiants ne peuvent contenir que des caractères alphanumériques (ou "$" ou "_"), et ne doivent pas commencer par un chiffre. Un identifiant diffère d'une <strong>chaîne de caractères</strong> dans la mesure où une chaîne est une donnée, tandis qu'un identifiant fait partie du code. En JavaScript, il n'existe pas de moyen pour convertir un identifiant en chaîne, mais il est parfois possible de <strong>convertir</strong> une chaîne en identifiant.</p>
+
+<h2 id="Pour_approfondir">Pour approfondir</h2>
+
+<h3 id="Culture_générale">Culture générale</h3>
+
+<ul>
+ <li>{{interwiki("wikipedia", "Identificateur", "Identificateur")}} sur Wikipédia</li>
+</ul>