In this post, you will learn how to work with functions so that you can use that same knowledge and thus evolve. a function is an organized and reusable piece of code that is used to perform a single related action; functions provide better modularity...
In this post, you will learn how to work with break and continue so that you can use that same knowledge and thus evolve. break makes the life of the cycle come to an end, that is, makes it not iterate through anything else; continue...
In this post, you will learn how to work with while and do while loop so that you can use that same knowledge and thus evolve. a cycle allows executing an instruction or a set of instructions several times; the while and the while loops...
In this post, you will learn how to work with foreach loop so that you can use that same knowledge and thus evolve. a cycle allows executing an instruction or a set of instructions several times; the foreach loop loops (iterates) depending on the items...
In this post, you will learn how to work with the for loop so that you can use that same knowledge and thus evolve. a cycle allows executing an instruction or a set of instructions several times; the for cycle goes around (iterates) according to...
In this post, you will learn how to work with switch so that you can use that same knowledge and thus evolve. the switch is another way of working with decisions and can only check an equality relationship, that is, it cannot use comparison operators;...