Skip to content

Logical operators #181

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

Merged
merged 24 commits into from
Jan 24, 2021
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e8e2276
Update article.md
Dorin-David Jan 21, 2021
b9df73b
Update article.md
Dorin-David Jan 21, 2021
f80fb36
Update article.md
Dorin-David Jan 22, 2021
a45abf0
Update task.md
Dorin-David Jan 22, 2021
fb58982
Update task.md
Dorin-David Jan 22, 2021
aff5e39
Update solution.md
Dorin-David Jan 22, 2021
f70d723
Update task.md
Dorin-David Jan 22, 2021
7f20acf
Update task.md
Dorin-David Jan 22, 2021
ba54fbf
Update solution.md
Dorin-David Jan 22, 2021
d5bafd0
Update task.md
Dorin-David Jan 22, 2021
3b38b4d
Update article.md
pasor1 Jan 22, 2021
4da1550
Merge pull request #2 from pasor1/patch-1
Dorin-David Jan 22, 2021
cf4680a
Update task.md
Dorin-David Jan 22, 2021
d9a93b9
Update task.md
Dorin-David Jan 22, 2021
698314b
Update task.md
Dorin-David Jan 22, 2021
27587d1
Update 1-js/02-first-steps/11-logical-operators/2-alert-or/solution.md
Dorin-David Jan 23, 2021
f92c0cb
Update 1-js/02-first-steps/11-logical-operators/article.md
Dorin-David Jan 23, 2021
1a39e5f
Update 1-js/02-first-steps/11-logical-operators/article.md
Dorin-David Jan 23, 2021
803368d
Update 1-js/02-first-steps/11-logical-operators/article.md
Dorin-David Jan 23, 2021
9930428
Update 1-js/02-first-steps/11-logical-operators/article.md
Dorin-David Jan 23, 2021
e2c97bd
Update 1-js/02-first-steps/11-logical-operators/article.md
Dorin-David Jan 23, 2021
b54fa5a
Update 1-js/02-first-steps/11-logical-operators/article.md
Dorin-David Jan 24, 2021
f25f2a6
Update task.md
Dorin-David Jan 24, 2021
c6a51aa
Update solution.md
Dorin-David Jan 24, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update 1-js/02-first-steps/11-logical-operators/article.md
Co-authored-by: Simone Pasini <[email protected]>
  • Loading branch information
Dorin-David and pasor1 authored Jan 23, 2021
commit f92c0cb155dac1f8e2775ff87594ec658b796b04
2 changes: 1 addition & 1 deletion 1-js/02-first-steps/11-logical-operators/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ result = a || b;

Nella programmazione classica, l'OR logico è utilizzato per manipolare solo tipi booleani. Se almeno un argomento è `true`, allora il risultato sarà `true`, altrimenti sarà `false`.

In JavaScript questo operatore è un più potente. Ma prima vediamo come si comporta con i valori booleani.
In JavaScript questo operatore è un po' più potente. Ma prima vediamo come si comporta con i valori booleani.

Ci sono quattro combinazioni logiche possibili:

Expand Down