Today’s issue of JavaScript 101 will be all about arrays. If you read the post about data types covering arrays, you should already know at least the basics. If not, don’t worry. We will practice creating one and n-th dimensional arrays at the beginning just for warming up. Then, we will move to methods that… Continue reading JavaScript 101-#9 – Arrays Pt1
Tag: programming
Jumping into web design
Studying design in school or learning everything by yourself in the evening? Web is more accessible then ever before and industry is welcoming new people, but this is only beginning. In next years it will only get better. So, what is the BIG thing you have to learn?
JavaScript 101-#7 – Numbers
After previous post where we finished exploration of functions, today we will take a step back to data types for a while in order to look at them more in detail. First data type, we will discuss today, are numbers.
JavaScript 101-#6 – Functions Pt2
In last part we took a look at functions, what they do, how they do it how to create them. We learned that there are two ways to declare them. One is with “var” keyword and another is without it. Today we will continue in our exploration of functions more in-depth. First thing on the… Continue reading JavaScript 101-#6 – Functions Pt2
JavaScript 101-#5 – Functions Pt1
In the last post we finished data types by exploring objects. Today, we will take a look at functions and how to create them. Data types are great to play with, but only until you get to know functions. So, let’s dive in!
JavaScript 101-#4 – Variables and data types Pt3
After arrays, next data type to explore are objects. Objects are one of the most important thing in JS you can work with. Different people have different opinions on this, but they are definitely in top three. Objects are pretty huge subject to study and there are whole books on object-oriented programming, so we should… Continue reading JavaScript 101-#4 – Variables and data types Pt3