100 Days of Swift - Day 3
Davmi Jose Valdez Ogando

Davmi Jose Valdez Ogando @davjvo

About: I'm just a regular guy in a regular world trying to live up his fantasy of not being regular at all.

Location:
Santo Domingo, Republica Dominicana
Joined:
Jul 13, 2019

100 Days of Swift - Day 3

Publish Date: Apr 2 '22
4 0

Continuation of Hacking With Swift 100 Days of Swift

Day 3 - Operators and conditions

This day was about operators, most of them (arithmetic, comparison, etc) works about the same the only difference being that parenthesis are not required inside if statements.

For switch statements, break; is not required / used, so if you want to execute the next condition in another case you need to use the reserved keyword fallthrough.

Now "range" operators are a bliss for numerical comparisons and array checking, the half-open range ..< or ..> implies that the range is not inclusive ex: 1..<5 is 1,2,3,4. Where the full range operation is inclusive so 1...5 is 1,2,3,4,5.
On the same fashioned way one can print specifics inside an array with this operator, ex:


let rangedArray: [Int] = [1,2,3,4];
print(rangedArray[1...]);

prints:
[2, 3, 4]

Comments 0 total

    Add comment