A Beginner's JavaScript Tutorial



Functions

Functions are by far one of the most important aspects of JavaScript. To understand the fundamentals of JS, you must become familiar with how functions work and interact. To start a function, you begin with the function keyword, followed by a name of your choice for said function. This name can be anything, but it helps to name it in a way that gives you or whoever else who may be reading the code an idea of what the function actually does. Let's look at an example:


          let myName = "Kyle";
          let myAge = 26;

          function helloWorld(myName, myAge) {
            document.write (myName + " is " + myAge + " years old.");
          }
          

In the above example, the function is first named helloWorld. Next, within the parentheses following the function's name, we give it parameters using the let variables defined above as "myName" and "myAge." Next, within curly brackets, we see code statements that define the function. The parameters are passed through the function and can be captured and manipulated. This statement will write a string of text to a document stream.



Objects

In JavaScript, an object is a grouping of correlated data that can be accessed using bracket notation, not unlike how you would access data in an array. Each property within an object is associated with a string value, making it easy to equate an object to an array. Much like many other things in JavaScript syntax, we start by initializing a variable. Let's look at an example:


        let person = {
          name: "Kyle",
          age: 26,
          gender: "male",
          veryTired: true,
        };
        console.log(person.veryTired);
        

An object is composed of multiple different members, each with a different name and value. For instance, the member "age" has a number value of 26. Members and value are separated by a colon and comma and the entire object ends with a semicolon. You can store just about anything you want in an object, each with varying values and names. Information within an object can be accessed through dot notation as seen in the above example. After the object has been defined, the console has been told to log the "veryTired" member which will print out as "true."



Arrays

The idea behind a JavaScript array is that it acts as a list of values that you can access through an integer that is known as a key. It is important to note that the list of values held within an array count upwards from 0 instead of 1 as might be expected. Here's what an array might look like:

        let myDinner = ['pasta', 'sauce', 'spices', 'chicken', 'cheese']
        
        console.log(myDinner.length);
        

In essence, the array functions as an object. In fact, if you were to log the type of the variable "myDinner" to the console, it would tell you that it is an object. Like most JavaScript code, you begin the array by defining it. In this case, we've given our array the name "myDinner" and filled in its contents using square brackets. To access the values within this object, you must keep in mind that, since the array counts up from 0, the key for 'sauce' is considered 1, not 2. Thus, 'pasta' is 0, 'sauce' is 1, 'spices' is 2, 'chicken' is 3, and finally 'cheese' is 4.