Do You Know JavaScript? Are You Sure? - Part One

Do you know JavaScript series
Download source code

Introduction

 
Here, we are starting a series of articles related to JavaScript. As this is the first part of the series, here we are going to see some basics of JavaScript which you may have forgotten already or you may not be aware of. You can always see my other posts related to JavaScript here. We will be using Visual Studio for our development. Let’s begin.
 
Basically, JavaScript is a programming language of HTML and the Web. Nowadays, we can create any kind of application using JavaScript. If you are totally new to JavaScript, I strongly recommend you read some basics here.
 
Background
 
Recently, I was assigned to a training task where I needed to train one of my colleagues who is a fresher and totally new to the programming field. I had covered almost all the topics in my training and I am sharing a few of them here. I hope you will like this.
 

Create a HTML page

 
As we already said, JavaScript is a programming language of HTML and the Web, we need a page to work with JavaScript. Let’s create it first.
  1. <!DOCTYPE html>    
  2. <html>    
  3.     
  4. <head>    
  5.     <title></title>    
  6.     <meta charset="utf-8" />    
  7. </head>    
  8.     
  9. <body>    
  10. </body>    
  11.     
  12. </html>  
Now, create a JS file and include it in your page.
  1. <script src="JavaScript.js"></script>   
Let’s begin our tutorial
 
Any idea what will be the output of the preceding lines of code?
  1. console.log(2 + 2);    
  2. console.log(2 + "2");    
  3. console.log(2 + "2" + 2);    
  4. console.log(2 + 2 + "2" + 2);    
  5. console.log(2 + 2 + "2" + 2 + 2);    
  6. console.log(2 + "2" + 2 + "2" + 2 + 2);    
  7. console.log("2" + 2 + "2" + 2 + 2 + 2 + 2);   
Once you run your application, press CTRL+SHIFT+J if you are opening your application in Google Chrome or CTRL+SHIFT+K if it is Mozilla, or press F12 if in IE. This will open the browser console. Now, check the output. Is it the same as you thought?
 
Javascript_tutorial_output_1
 
If you noticed well, console.log(2 + 2 + “2” + 2 + 2); returned 4222. The First 2s are added and when it comes to the third digit, the type of the result is being changed to a string, so the string concatenation is happening. This is because of the dynamic nature of JavaScript.
 
So, you can always add different types of values to the same variable in JavaScript. The preceding codes will always be working perfectly.
  1. var a = 1;    
  2. a= = "Sibeesh";   
Now, let's take a simple test. What will be the output of the preceding code?
  1. var b;    
  2. console.log(b);   
Yes,  you are right! It will return undefined as we have not assigned any values to the variable b. Have you ever checked the type of an undefined variable?
  1. console.log(typeof(b));   
The result will be undefined. Now, what about the preceding codes?
  1. console.log(typeof(undefined));    
  2. console.log(typeof(typeof(b)));    
  3. console.log(typeof(String(b)));    
  4. console.log(typeof({a:b}));    
  5. console.log(typeof(null));   
It can give you an output as below.
  1. undefined  
  2. string  
  3. string  
  4. object  
  5. object  
Here, one thing is worth noticing- typeof(typeof()) will always return string. And {a:b}, null are actually objects so the typeof will return the type as an object. Let’s write a simple program now.
  1. var a=1;    
  2. var b=a;    
  3. a=2;    
  4. console.log(b);    
  5. console.log(a);   
See how simple it was. Any idea what would be the output of that? If your answer is 1 & 2, then you are right. Because the variables we just created are primitive types. In primitive data types, the values are saved directly on the variable. If you are coming from the background of C#, you can understand the value typed variable.
 
Now, we have one more data type, which is a referenced variable where values are stored as a reference, not as direct values. An example of a referenced type variable is Object. Let’s go on to the next topic which is an overview of JavaScript Objects, Do you know how to create an object?
  1. var myName = {firstName: "Sibeesh", lastName: "Venu"};    
  2. console.log(myName);    
  3. console.log(JSON.stringify(myName));    
  4. console.log(myName.firstName);    
  5. console.log(myName.lastName);   
Here, myName is an object. You can always use JSON.stringify() to make your object to a string format and JSON.parse() to make your string to object. So the above code will give you an output as follows.
 
Javascript_tutorial_output_2
 
An object is a collection of key-value pairs like we see in the above object, firstName is key, and “Sibeesh” is value. How can we take any values from an object? We can always access a property from an object using dot(.) operator as follows.
  1. console.log(myName.firstName);    
  2. console.log(myName.lastName);  
The above code will give you an output as “Sibeesh” “Venu”, right? We just access a property from an object. Now, we have given a string value to our object as a key. Is there any way we can give a key in number format? Let’s have a look.
  1. var myName = {1: "Sibeesh", 2: "Venu"};   
The question is, how can we access values of the keys 1 & 2, like below?
  1. console.log(myName.1);    
  2. console.log(myName.2);   
If you said “Yes”, you are wrong. If you try to access the values as above, this will throw an “Uncaught SyntaxError” error, so how can we access it?
  1. console.log(myName["1"]);    
  2. console.log(myName["2"]);   
So when the key value is a number, we must use [] for accessing the values. Now, let's go back to the previous object.
  1. var myName = {firstName: "Sibeesh", lastName: "Venu"};    
  2. var myNameCopy= myName;    
  3. myName.firstName = "Sibi";    
  4. console.log(myName.firstName);    
  5. console.log(myNameCopy.firstName);   
Any idea what will be the output of the above code? Have you just said Sibi Sibeesh? Oh, man. You got confused. The actual output is Sibi Sibi. As we said earlier, an object is an example of a referenced type variable where the values are stored as a reference to it. So even if we change the value of our first object, that will reflect our second one too.
 
In the above examples we have created objects like below,
  1. var myName = {firstName: "Sibeesh", lastName: "Venu"};   
This way of creating an object is called Object literals. Now the question is, is this the only way of creating the object? There is one more way, which is known as Object Constructor. Now we can create the same objects in the Object constructor way.
  1. var myName = new Object();    
  2. myName.firstName = "Sibeesh"    
  3. myName.lastName = "Venu";    
  4. console.log(myName.firstName);    
  5. console.log(myName.lastName);   
Is there any rule that we can add only variables to an object? Absolutely no. An object can hold a function too. Let’s create an object with a function inside.
  1. var myName = {    
  2.         firstName: "Sibeesh",    
  3.         lastName: "Venu",    
  4.         myFullName: function() {    
  5.             console.log(myName.firstName + " " + myName.lastName);    
  6.         }   
So, the code myName.myFullName(); will return my full name “Sibeesh Venu” as output. Right? So from the above code, we can create a functions in JavaScript as follows:
  1. var myFullName = function(firstName, lastName){    
  2. return firstName + " " + lastName;    
  3. }   
If you call the above function as preceding, you will get an output as “Sibeesh Venu”
  1. console.log(myFullName("Sibeesh","Venu"));   
The question is, what if we are passing only one value? Let’s try that out.
  1. console.log(myFullName("Sibeesh"));   
If you are working on any server-side language, this will actually give an error like “function with one parameter couldn’t find”. But JavaScript is not like that. Even if you are wrong, it will try to make you right. So, in this case, it actually treats the second parameter as undefined and gives you an output as “Sibeesh undefined”.
 
That’s all for today. You can always download the attached source code to see the complete code and application. Happy coding!.
 
References
See also

Conclusion

 
Did I miss anything that you may think was needed? Did you find this post useful? I hope you liked this article. Please share with me your valuable suggestions and feedback. You can always see this article on my blog here.
 
Your turn. What do you think?
 
A blog isn’t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C# Corner, Code Project, Stack Overflow, ASP.NET Forum instead of commenting here. Tweet or email me a link to your question there and I’ll definitely try to help if I can.