Apply Today to our Front End or Back End Programs & check out our scholarships!

Intro to JavaScript

Back to Curriculum Index

Goals

  • Identify Strings and Numbers as JavaScript data types
  • Create variables to store Strings and Numbers
  • Combine static string data with variables using String interpolation

What is JavaScript?

JavaScript is a language that allows us to interact with a webpage. We can write JavaScript that can access HTML elements and change their appearance or content based on the way a user interacts with the page.

Strings and Numbers

In programming, a String is a series of characters (alpha, numeric, or symbol) between quotation marks. We classify strings as a data type. This is true in any programming language, not just JavaScript.

'I am a string!'

'string-here~~~~~'

"I can also be in double-quotes!"

"I can hold emojis: 💥🦄✨, lots of spaces:     , and special characters: $#@%"

Another data type in JavaScript is a Number. Just like we interact with numbers on a daily basis and in math class, JavaScript can work with numbers. Here are a couple of operations in use:

4 + 2
//=> 6

7 * 3
//=> 21

console.log()

As we learn about JavaScript today, we will use the console.log() method to print the data we are working with out to the console. The console is a tool for developers that allows us to log information as part of our development process.

Here’s the syntax in the JavaScript file:

console.log('I am a string!');
console.log(4 + 5);

When we run the code above, we will see the associated values print out in the console.

Variables

In JavaScript, we declare variables using the var keyword. This tells JavaScript that we’re about to make a new variable, or declare a variable.

Variables can store strings (text in between quotation marks), numbers, HTML elements, among many other things! Here are a few examples of JavaScript variables:

var age = 104;
var school = 'Turing School of Software & Design';
var firstName = 'Amy';

Why Variables?

Since JavaScript is in charge of user interactions, we may want to hold onto a piece of information for later use.

  • On social media sites, there is usually a username or handle variable. If you are logged in, the variable will be set to your information. If another user was logged in, for the instance of that session, the variable would be set to that other users information.
  • Similarly, if you decide to change the value stored in your username variable, that gets updated throughout the entire application!

Variables are at the core of everything we do in programming and this isn’t unique to JavaScript.

Try It: Variables

Navigate to your JavaScript file.

Declare 3 variables, using the names name, email, and numberOfPets. Assign each to an appropriate value.

Make sure to console.log each variable to verify you've stored it correctly!

Finished? Declare at least 2 more variables - you choose the name and values!

Interpolation

We can use string interpolation to combine static data with dynamic (or variable) data. Here’s an example of the syntax:

var firstName = 'Amy';
console.log(`Hello, ${firstName}!`);

The code above will make “Hello, Amy!” appear in the console.

Note that back ticks are the characters that surround this combination of the string an ${} syntax. You can find the back-tick key at the top-left of your keyboard, next to the 1.

Anything inside the back ticks will be read as a string. But, when the interpreter sees the ${, it will stop and wait for JavaScript code to read. Typically, we provide a variable name here. When the interpreter read the matching closing bracket - } - it goes back to treating characters as part of the string.

Try It: Interpolation

Using interpolation and at least two of the variables you declared in the previous section, write a sentence about yourself! Make sure to print that sentence out to the console.

Change the value of one of the Strings you interpolated and re-run your code. Is the difference reflected in the output?

🌶Click here for a Spicy Challenge🌶

What happens if you interpolate numberOfPets * 4? What does that tell you about how interpolation works?


Next: Interacting with HTML