You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/065-or/README.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,10 @@
1
1
# `065` or
2
2
3
+
In this exercise, we are going to replicate the behavior of the OR operator `||` without actually using the operator itself. Do you remember how it works?
4
+
3
5
## 📝 Instructions:
4
6
5
-
1. Write a function called `or`. Given 2 boolean expressions, `or` returns true or false, corresponding to the `||` operator.
7
+
1. Write a function called `or`. Given 2 boolean expressions, `or` returns true or false, following the rules of the `||` operator.
0 commit comments