diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/pt-br/glossario/identificador | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/pt-br/glossario/identificador')
-rw-r--r-- | files/pt-br/glossario/identificador/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/files/pt-br/glossario/identificador/index.html b/files/pt-br/glossario/identificador/index.html new file mode 100644 index 0000000000..a94516e145 --- /dev/null +++ b/files/pt-br/glossario/identificador/index.html @@ -0,0 +1,20 @@ +--- +title: Identificador (Identifier) +slug: Glossario/Identificador +tags: + - Compatilhando + - Glossário + - Iniciante +translation_of: Glossary/Identifier +--- +<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> |