diff options
author | Florian Dieminger <me@fiji-flo.de> | 2021-02-11 18:27:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 18:27:17 +0100 |
commit | ad7f998115dd568832332484debf1f1b16b0c905 (patch) | |
tree | 2f3a9137e20731b7f6880fe5adb31fa439215d7d /files/pt-br/glossary/identifier/index.html | |
parent | 7a94b4d8daf297eda6df8e5cf933f7ba159bbc76 (diff) | |
parent | 1d435be33d8b76cd7b06cd06996c19d74f83cfd4 (diff) | |
download | translated-content-ad7f998115dd568832332484debf1f1b16b0c905.tar.gz translated-content-ad7f998115dd568832332484debf1f1b16b0c905.tar.bz2 translated-content-ad7f998115dd568832332484debf1f1b16b0c905.zip |
Merge pull request #41 from fiji-flo/unslugging-pt-br
Unslugging pt br
Diffstat (limited to 'files/pt-br/glossary/identifier/index.html')
-rw-r--r-- | files/pt-br/glossary/identifier/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/files/pt-br/glossary/identifier/index.html b/files/pt-br/glossary/identifier/index.html new file mode 100644 index 0000000000..fa293979da --- /dev/null +++ b/files/pt-br/glossary/identifier/index.html @@ -0,0 +1,21 @@ +--- +title: Identificador (Identifier) +slug: Glossary/Identifier +tags: + - Compatilhando + - Glossário + - Iniciante +translation_of: Glossary/Identifier +original_slug: Glossario/Identificador +--- +<p>Uma sequência de caracteres no código, que identifica uma <strong>{{glossary("variável")}}, {{glossary("função")}}, ou {{glossary("propriedade")}}</strong>.</p> + +<p>Em {{glossary("JavaScript")}}, identificadores podem conter somente caracteres alfanuméricos (ou "$" ou "_"), e não podem iniciar com um dígito. Um identificador difere de uma <strong>string</strong> no sentido de que uma string é informação, enquanto um identificador é parte do código. Em JavaScript, não existe uma forma de converter identificadores para strings, mas as vezes é possível converter strings em identificadores.</p> + +<h2 id="Saiba_mais">Saiba mais</h2> + +<h3 id="Conhecimento_Geral">Conhecimento Geral</h3> + +<ul> + <li>{{interwiki("wikipedia", "Identificador", "Identificador")}} no Wikipédia</li> +</ul> |