Hello, World! Your First JavaScript Programs
The following is a short extract from our new book, JavaScript: Novice to Ninja, 2nd Edition, written by Darren Jones. It’s the ultimate beginner’s guide to JavaScript. SitePoint Premium members get access with their membership, or you can buy a copy in stores worldwide.
It is a tradition when learning programming languages to start with a “Hello, world!” program. This is a simple program that outputs the phrase “Hello world!” to announce your arrival to the world of programming. We’re going to stick to this tradition and write this type of program in JavaScript. It will be a single statement that logs the phrase “Hello, world!” to the console.
To get started, you’ll need to open up your preferred console (either the Node REPL, browser console, or ES6 Console on the web). Once the console has opened, all you need to do is enter the following code:
console.log('Hello world!');
Then press Enter. if all went to plan you should see an output of “Hello, world!” displayed; similar to the screenshot below.
Congratulations, you’ve just written your first JavaScript program! It might not look like much, but a wise person once said that every ninja programmer’s journey begins with a single line of code (or something like that, anyway!).
JavaScript in the Browser
JavaScript is an interpreted language and needs a host environment to run. Because of its origins, the main environment that JavaScript runs in is the browser, although it can be run in other environments; for example, our first program that we just wrote ran in the Node REPL. Node can also be used to run JavaScript on a server. By far the most common use of JavaScript is still to make web pages interactive. Because of this, we should have a look at what makes up a web page before we go any further.
Three Layers of the Web
Nearly all web pages are made up of three key ingredients ― HTML, CSS and JavaScript. HTML is used to mark up the content. CSS is the presentation layer, and JavaScript adds the interactivity.
Each layer builds on the last. A web page should be able to function with just the HTML layer ― in fact, many websites celebrate “naked day” when they remove the CSS layer from their site. A website using just the HTML layer will be in its purest form and look very old school, but should still be fully functional.
Keep These Layers Separate
It is widely considered best practice to separate the concerns of each layer, so each layer is only responsible for one thing. Putting them altogether can lead to very complicated pages where all of the code is mixed up together in one file, causing “tag soup” or “code spaghetti”. This used to be the standard way of producing a website and there are still plenty of examples on the web that do this.
Unobtrusive JavaScript
When JavaScript was initially used, it was designed to be inserted directly into the HTML code, as can be seen in this example that will display a message when a button is clicked:
<button id='button' href='#' onclick='alert("Hello World")'>Click Me</a>
This made it difficult to see what was happening, as the JavaScript code was mixed up with the HTML. It also meant the code was tightly coupled to the HTML, so any changes in the HTML required the JavaScript code to also be changed to stop it breaking.
It’s possible to keep the JavaScript code away from the rest of the HTML by placing it inside its own <script>
tags. The following code will achieve the same result as that above:
<script>
const btn = document.getElementById(’link’)
btn.addEventListener('click', function() {
alert('Hello World!');
};
</script>
This is better because all the JavaScript is in one place, between the two script tags, instead of mixed with the HTML tags.
We can go one step further and keep the JavaScript code completely separate from the HTML and CSS in its own file. This can be linked to using the src
attribute in the script
tag to specify the file to link to:
<script src='main.js'></script>
The JavaScript code would then be placed in a file called main.js
inside the same directory as the HTML document. This concept of keeping the JavaScript code completely separate is one of the core principles of unobtrusive JavaScript.
In a similar way, the CSS should also be kept in a separate file, so the only code in a web page is the actual HTML with links to the CSS and JavaScript files. This is generally considered best practice and is the approach we’ll be using in the book.
Self-Closing Tags
If you’ve used XML or XHTML, you might have come across self-closing tags such as this script tag:
<script src='main.js' />
These will fail to work in HTML5, so should be avoided.
You may see some legacy code that uses the language attribute:
<script src='main.js' language='javascript'></script>
This is unnecessary in HTML5, but it will still work.
Graceful Degradation and Progressive Enhancement
Graceful degradation is the process of building a website so it works best in a modern browser that uses JavaScript, but still works to a reasonable standard in older browsers, or if JavaScript or some of its features are unavailable. An example of this are programs that are broadcast in high definition (HD) ― they work best on HD televisions but still work on a standard TV; it’s just the picture will be of a lesser quality. The programs will even work on a black-and-white television.
Progressive enhancement is the process of building a web page from the ground up with a base level of functionality, then adding extra enhancements if they are available in the browser. This should feel natural if you follow the principle of three layers, with the JavaScript layer enhancing the web page rather than being an essential element that the page cannot exist without. An example might be the phone companies who offer a basic level of phone calls, but provide extra services such as call-waiting and caller ID if your telephone supports it.
Whenever you add JavaScript to a web page, you should always think about the approach you want to take. Do you want to start with lots of amazing effects that push the boundaries, then make sure the experience degrades gracefully for those who might not have the latest and greatest browsers? Or do you want to start off building a functional website that works across most browsers, then enhance the experience using JavaScript? The two approaches are similar, but subtly different.
Your Second JavaScript Program
We’re going to finish the chapter with a second JavaScript program that will run in the browser. This example is more complicated than the previous one and includes a lot of concepts that will be covered in later chapters in more depth, so don’t worry if you don’t understand everything at this stage! The idea is to show you what JavaScript is capable of, and introduce some of the important concepts that will be covered in the upcoming chapters.
We’ll follow the practice of unobtrusive JavaScript mentioned earlier and keep our JavaScript code in a separate file. Start by creating a folder called rainbow
. Inside that folder create a file called rainbow.html
and another called main.js
.
Let’s start with the HTML. Open up rainbow.html
and enter the following code:
<head>
<meta charset='utf-8'>
<title>I Can Click A Rainbow</title>
</head>
<body>
<button id='button'>click me</button>
<script src='main.js'></script>
</body>
</html>
This file is a fairly standard HTML5 page that contains a button with an ID of button
. The ID attribute is very useful for JavaScript to use as a hook to access different elements of the page. At the bottom is a script
tag that links to our JavaScript file.
Now for the JavaScript. Open up main.js
and enter the following code:
const btn = document.getElementById('button');
const rainbow = ['red','orange','yellow','green','blue','rebeccapurple','violet'];
function change() {
document.body.style.background = rainbow[Math.floor(7*Math.random())];
}
btn.addEventListener('click', change);
Our first task in the JavaScript code is to create a variable called btn
(we cover variables in Chapter 2).
We then use the document.getElementById
function to find the HTML element with the ID of btn
(Finding HTML elements is covered in Chapter 6). This is then assigned to the btn
variable.
We now create another variable called rainbow
. An array containing a list of strings of different colors is then assigned to the rainbow
variable (we cover strings and variables in Chapter 2 and arrays in Chapter 3).
Then we create a function called change
(we cover functions in Chapter 4). This sets the background color of the body element to one of the colors of the rainbow (changing the style of a page will be covered in Chapter 6). This involves selecting a random number using the built-in Math
object (covered in Chapter 5) and selecting the corresponding color from the rainbow
array.
Last of all, we create an event handler, which checks for when the button is clicked on. When this happens it calls the change
function that we just defined (event handlers are covered in Chapter 7).
Open rainbow.html
in your favorite browser and try clicking on the button a few times. If everything is working correctly, the background should change to every color of the rainbow, such as in the screenshot below.
Continue reading %Hello, World! Your First JavaScript Programs%
LEAVE A REPLY
You must be logged in to post a comment.