Proven Methods to Achieve FasterHave No To-Do List start Simply saying “No” to almost everything.Dec 5, 2023Dec 5, 2023
The Power of Productive BreaksIn a world that often glorifies constant hustle, taking breaks is often seen as a sign of slacking off. However, research suggests that…Dec 5, 2023Dec 5, 2023
Only 5min for Productive DayIn the fast-paced world we live in, finding moments for self-reflection and gratitude can often be challenging. The 5-Minute Journal offers…Dec 5, 2023Dec 5, 2023
Mutating Function in SwiftThe properties of value types cannot be modified within its instance methods by default. In order to modify the properties of a value type…Dec 3, 2021Dec 3, 2021
Difference between Array / Set/ TuplesArrays keep the order and can have duplicates,Dec 3, 2021Dec 3, 2021
why Swift needs enums at all!An enum is simply a nice name for a value. We can make an enum called Direction with cases for north, south, east, and west, and refer to…Feb 23, 2021Feb 23, 2021
Enums and Enum Associated Valuesenums — are a way of defining groups of related values in a way that makes them easier to use.Feb 23, 2021Feb 23, 2021
Empty Collections in SwiftArrays, sets, and dictionaries are called collections, because they collect values together in one place.Feb 23, 2021Feb 23, 2021
Why does Swift have default values for dictionariesWhenever you read a value from a dictionary, you might get a value back or you might get back nil — there might be no value for that key…Feb 23, 2021Feb 23, 2021
Why does Swift have dictionaries as well as arrays?Dictionaries and arrays are both ways of storing lots of data in one variable, but they store them in different ways:Feb 23, 2021Feb 23, 2021