JavaScript for WordPress Developers: Getting Started With Objects

JavaScript for WordPress Developers: Getting Started With Objects

Objects are one of the most important and most powerful features of JavaScript and many built-in features use objects natively.

Essentially, an object is a collection of properties, and a property consists of a key and a value. In this sense, objects in JavaScript are akin to associative arrays in PHP but the similarities end there.

This is the second post in our five-part series focusing on JavaScript for WordPress developers. Throughout this series, you’ll learn the basics but I’ll presume you already have a working knowledge of HTML and CSS. If you need help with these building blocks, take a look at our series about WordPress Development for Beginners.

In the last article in this series, we looked at the very basics of JavaScript – how to add to a page and use variables and functions. In this tutorial, we’ll focus on commonly used objects in JavaScript.

Missed a tutorial in our JavaScript for WordPress Developers series? You can catch up on all five posts here:

Objects

Let’s dive straight in by looking at an example of an object in JavaScript:

This is a very simple object with four properties. The first property has the key “name” and the value “Daniel Pataki.” As you can see from the other properties, values may use many different data types.

What makes objects so useful, but also a little confusing, is that property values can also be functions. If you’ve copy-pasted some jQuery code before you may have seen this in action in the form of callback functions, which looks something like this:

The code above would send a post request to the given URL. The “complete” property invokes a function, which is run when the request has been completed. To see how this would work let’s quickly write a function of our own:

The object contains a name property and a greeting property, which is a function. Once defined we can invoke that function using the dot syntax: me.greeting. You can even reference properties from within the same object using the this keyword.

If you’ve worked with PHP objects before the idea is very similar. The simplicity of the syntax throws people sometimes, but there is tremendous power within.

Working With Objects

Let’s take a step back and learn how to create and manipulate objects. An object is always encased in curly braces. Property names can be unquoted but must be quoted if they contain special characters like dashes. Property values can be of multiple types including strings, integers, arrays and other objects.

Let’s create a test object with some useful information we can manipulate:

To get the value of a property you can use the dot notation or the square bracket notation. The bracket notation is useful if you want to use a variable property name. Take a look at the example below:

And here’s what it looks like in the browser console:

FREE EBOOK
Your step-by-step roadmap to a profitable web dev business. From landing more clients to scaling like crazy.

By downloading this ebook I consent to occasionally receive emails from WPMU DEV.
We keep your email 100% private and do not spam.

FREE EBOOK
Plan, build, and launch your next WP site without a hitch. Our checklist makes the process easy and repeatable.

By downloading this ebook I consent to occasionally receive emails from WPMU DEV.
We keep your email 100% private and do not spam.

Logging object values
Logging object values

You can use a function contained within an object similarly, just add a parenthesis at the end (and parameters if needed).

The function calculates reading time by presuming a reading speed of 2.5 minutes per page. I multiplied the total page count by 2.5 to arrive at the number of minutes required for a complete read through. I then divide by 60 to arrive at the number of hours needed.

In the previous article, we created an example where we listed some tweets using an array, but we can make our example a lot more flexible using objects. Here’s the complete code re-written to use objects:

The biggest change you’ll see is that instead an array of tweets and a username given separately, I’ve created an array of tweet objects. Each tweet object contains the tweet and the username. This removes the uncertainty of passing in the username from somewhere else.

The tweet() function now uses the object’s properties instead of separate arguments and I’ve removed document.write to make sure it just returns a string, which can then be used anywhere.

Using Constructors

Currently, our code is not bad but it could still be a lot better. We will probably never need to display a tweet without a tweet object, so we shouldn’t really define our tweet function outside of the object. If we use the same structure we would need to add a display_tweet() function into all three objects.

This is where constructors come in. If you’re familiar with object-oriented PHP this is similar to using classes and objects in PHP. Think of a constructor as a way to initialize a class. Let me show you some code to make this clearer:

Let’s start with tweet_1. I used new Tweet() to call the Tweet function, passing in two parameters. The function is a constructor that creates properties for the object dynamically. It assigns the first parameter to this.text and the second to this.username. It also creates a this.display function that displays the tweet.

Within the function we can refer to properties using the this keyword. Outside of the function we use the dot notation. To log the first tweet’s text we use tweet_1.text, to log the tweet display for the second one we use tweet_2.display().

The beauty of this is its reusability. You can create as many tweets you like by creating a new object using the Tweet class. The object will contain all the functions and other elements it needs to function.

Let’s rewrite our tweet example with constructors in mind:

That’s a lot cleaner and a lot more understandable. I’ve added the ability to add a prefix and a suffix to the tweet to give it some extra flexibility. This way we can display it as a list element easily.

Overview

In this tutorial, we delved into JavaScript objects and learned how they can be used to create data structures to make our code neater, better to understand and more flexible. Along with the previous tutorial you should now be up to speed on arrays, variables and basic JavaScript.

In the next tutorial, we’ll take a look at jQuery, the JavaScript framework used heavily by WordPress. You’ll learn how to manipulate websites so you can create great things like toggle sections, date drop-downs and more.

Did you find this tutorial helpful? Why do you want to learn JavaScript in WordPress development? What do you want to know more about? Let us know in the comments below.

Tags:

Daniel Pataki Daniel is the CTO at Kinsta and has written for many outstanding publications like WPMU DEV and Smashing Magazine. In his spare time, you'll find him playing board games or planning the next amazing office game like the not-at-all-destructive Megaball.