I hope that you understood and enjoyed the loops we discussed previously. The next topic in JavaScript 101 series, after loops, we will explore is “switch” statement. Curriculum for today will be all about what it is, how does it work and why it is better to use is in some cases rather than “if”… Continue reading JavaScript 101-#16 – Switch statement
Tag: learning
JavaScript 101-#15 – Loops Pt2
Today, in part 2 of loops we will take a look at “while“ loop and its advanced sibling „do while“ loop. There will be many examples for you to practice these two types of loops and to understand them fully. “while“ and “do while“ are, after “for“ loop last available loops you can use in… Continue reading JavaScript 101-#15 – Loops Pt2
JavaScript 101-#14 – Loops Pt1
In this part of JavaScript 101 we will take a look at one thing that will help you do your work faster, better and with less code. This subject is one of the favorite for many of programmers in any programming language. Our topic for today, and probably one future post, are loops! In this… Continue reading JavaScript 101-#14 – Loops Pt1
JavaScript 101-#13 – If statement
In the previous part of JavaScript 101 series we finished exploration of data types by learning about objects. Today, we will take a look at topic that will be very important in your future work. What we are going to talk about are if statements. These statements, as you will see, will become very handy… Continue reading JavaScript 101-#13 – If statement
CSS tips and tricks #9-Display vs visibility
CSS properties visibility and display are very similar and can confuse some web designers and developers. I too, had a problem to distinguish them in time of beginning my journey in web design. For this reason, to help you smash or even avoid this problem, we will examine both of these properties in-depth along with… Continue reading CSS tips and tricks #9-Display vs visibility
JavaScript 101-#12 – Objects Pt2
Lastly, we practiced creating object, got familiar with „this“ keyword and also got better with accessing methods and properties of objects. All of this will be very useful today. What’s on program? We will take a look at another way to create objects constructors that can be used to create instances of objects later. Stop… Continue reading JavaScript 101-#12 – Objects Pt2