-
-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adição de termos técnicos #156
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -482,6 +482,72 @@ | |||||
"Conceito", | ||||||
"Back-end" | ||||||
] | ||||||
}, | ||||||
{ | ||||||
"title": "NaN", | ||||||
"description": "A propriedade global NaN é um valor especial que significa Not-A-Number(Não é um número).", | ||||||
"tags": [ | ||||||
"Conceito", | ||||||
"Back-end", | ||||||
"Front-end" | ||||||
Comment on lines
+490
to
+492
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acredito que aqui podemos deixar apenas a tag de conceito 🤔 |
||||||
] | ||||||
}, | ||||||
{ | ||||||
"title": "Null", | ||||||
"description": "Null é um literal que representa um valor nulo ou vazio.", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acredito que podemos detalhar melhor aqui também. O que acha?
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acho que pode inclusive fazer um referência cruzada entre |
||||||
"tags": [ | ||||||
"Conceito", | ||||||
"Back-end", | ||||||
"Front-end" | ||||||
Comment on lines
+499
to
+501
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acredito que aqui podemos deixar apenas a tag de conceito 🤔 |
||||||
] | ||||||
}, | ||||||
{ | ||||||
"title": "Undefined", | ||||||
"description": "O valor global undefined representa um valor indefinido, ou seja, um valor que não foi definido ou atribuído em uma variável.", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Essa explicação utiliza uma analogia simples para tornar o conceito mais acessível, veja se faz sentido:
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acham que vale adicionar que nem todas as linguagens usam
Eu escrevi int x; ele poderia setar int *x; |
||||||
"tags": [ | ||||||
"Conceito", | ||||||
"Back-end", | ||||||
"Front-end" | ||||||
Comment on lines
+508
to
+510
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acredito que aqui podemos deixar apenas a tag de conceito 🤔 |
||||||
] | ||||||
}, | ||||||
{ | ||||||
"title": "Falsy", | ||||||
"description": "Falsy é um valor que se traduz por falso quando avaliado em um contexto Booleano.", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Trouxe uma sugestão pensando que essapode ser um pouco técnica para quem não está familiarizado com o termo "contexto Booleano", veja o que acha:
Suggested change
|
||||||
"content": { | ||||||
|
||||||
"code": "São considerados valores Falsy(false, null, undefined, 0, [], '')" | ||||||
}, | ||||||
"tags": [ | ||||||
"Conceito", | ||||||
"Back-end", | ||||||
"Front-end" | ||||||
Comment on lines
+521
to
+523
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acredito que aqui podemos deixar apenas a tag de conceito 🤔 |
||||||
] | ||||||
}, | ||||||
{ | ||||||
"title": "Truthy", | ||||||
"description": "Truthy é um valor que se traduz por falso quando avaliado em um contexto Booleano.", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "truthy" é o oposto de "falsy", veja se essa explicação faz sentido pra você:
Suggested change
|
||||||
"content": { | ||||||
|
||||||
"code": "São considerados valores Truthy(true, Number(42, -42, 3.14, -3.14), Infinity, Strings('foo'))" | ||||||
}, | ||||||
"tags": [ | ||||||
"Conceito", | ||||||
"Back-end", | ||||||
"Front-end" | ||||||
Comment on lines
+534
to
+536
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acredito que aqui podemos deixar apenas a tag de conceito 🤔 |
||||||
] | ||||||
}, | ||||||
{ | ||||||
"title": "Concatenação", | ||||||
"description": "É o termo que se da quando juntamos um texto a outro por meio do operador (+)", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Veja o que acha dessa explicação, trazendo um pouco mais de contexto:
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Vale falar que concatenação não é só pra strings, pode ser pra listas ou outros objetos também. Em python, por exemplo, dá pra concatenar dataframes em pandas. Acho que mais importante é dizer que concatenação é um append né, no caso ele adiciona sempre no final do outro objeto. |
||||||
"content": { | ||||||
|
||||||
"code": "var one = 'dicio'; var two = 'tech'; var joined = one + two" | ||||||
}, | ||||||
"tags": [ | ||||||
"Conceito", | ||||||
"Back-end", | ||||||
"Front-end" | ||||||
Comment on lines
+547
to
+549
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Acredito que aqui podemos deixar apenas a tag de conceito 🤔 |
||||||
] | ||||||
} | ||||||
] | ||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Acho que nessa podemos adicionar um pouco mais de contexto, o que acha?