is 'if' operator?

The title makes me ask "is 'if' keyword operator or not?".
I think 'if' is not operator because it does not return any value and it is called if-statement.
This commit is contained in:
Mustafa Kemal Tuna 2020-07-01 18:19:32 +03:00 committed by GitHub
parent ea3d179622
commit ad0dd99b62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
# Conditional operators: if, '?' # Conditional branching: if, '?'
Sometimes, we need to perform different actions based on different conditions. Sometimes, we need to perform different actions based on different conditions.