Introduction to JavaScript​ 1

1/8 INTRODUCTION TO JAVASCRIPT

Console

Before you learn about data types and methods, you need to know how to print values to the console. The console is a tool that developers use to record the output of their JavaScript programs.

The console.log() command is used to print, or log, text to the console. Consider the following example:

 

console.log(“Hello!”);

 

In this example, Hello! is logged to the console. Notice, we denote the end of the line with a semicolon. Although your code will usually run as intended without a semicolon, it is best practice to always include one to ensure your code works as expected in situations when it does need one.

You’ll see in the next exercise that you can put any data type inside the parentheses to print it to the console.

 

Instructions

 

  1. Use console.log to log your favorite pizza topping to the console. Write your topping between the quotation marks (‘’).

2/8 INTRODUCTION TO JAVASCRIPT

Data Types

Data types are the building blocks of all languages and essential pieces of any program.

Below are examples of four primitive data types that lay the foundation for all JavaScript programs. Primitive data types, as their name implies, are the simplest built-in forms of data.

console.log(‘New York City’);

console.log(40.7);

console.log(true);

console.log(null);

In the example above, the computer logs each of the four primitive data types to the console. The types include:

    • Strings — Any grouping of keyboard characters (letters, spaces, numbers, or symbols) surrounded by single quotes (‘Hello’) or double quotes (“World!”). In the example above, ‘New York City’ is a string.
    • Numbers — Any number, including numbers with decimals: 4, 1516, .002, 23.42. In the example above, 40.7 is a number.
    • Booleans — Either true or false, with no quotations. In the example above, true is a boolean.
    • Null — Can only be null. It represents the absence of value.

Let’s review: a string is any grouping of words, a number’s a number, null is the absence of value, and a boolean is a ghostly Halloween costume. Or no, that’s false! It’s either true or false.

Instructions

  1. On line 1, log the string ‘JavaScript’ to the console. Use console.log() to print “JavaScript” to the console.
  2. On line 2, log the number 33.7 to the console.

3/8 INTRODUCTION TO JAVASCRIPT

Math Operators

Don’t worry! Math doesn’t need to be your strong-suit to learn JavaScript. However, there are operators you’ll need to know to make useful programs.

JavaScript supports the following math operators:

Add: +

Subtract: –

Multiply: *

Divide: /

These all work how you might guess:

 

console.log(3 + 4); // Equals 7

console.log(51); // Equals 4

console.log(4 * 2); // Equals 8

console.log(9 / 3); // Equals 3

 

In the example above, each line uses a different mathematical operator to log a value to the console.

 

Instructions

 

  1. Inside of a console.log(), add 3.5 to your age. This is the age you’ll be when we start sending people to live on Mars.
    Use the + operator to add 3.5 to your age.
    For example: console.log(25 + 3.5);
  2. On a new line write another console.log(). Inside the new console.log()’s parentheses, take the current year and subtract 1969.
    The answer is how many years it’s been since the 1969 moon landing.
    Use the – operator to subtract two numbers.
  3. Create another console.log(). Inside the parentheses divide 65 by 240.
    Use the / operator to divide two numbers.
  4. Create one last console.log. Inside the parentheses, multiply 0.2708 by 100.
    That’s the percent of the sun that is made up of helium. Assuming we could stand on the sun, we’d all sound like chipmunks!

4/8 INTRODUCTION TO JAVASCRIPT

Properties

When you introduce a new piece of data into a JavaScript program, the browser saves it as an instance of the data type. An instance is an individual case (or object) of a data type.

JavaScript will save a new piece of data, like ‘Hello’, as a string instance in the computer’s memory. Another example, the number 40.7, is stored as an instance of the number data type.

An instance, like the string ‘Hello’, has additional information attached to it.

For example, every string instance has a property called length that stores the number of characters in it. You can retrieve property information by appending the string with a period and the property name:

 

console.log(‘Hello’.length);

In the example above, the value saved to the length property is retrieved from the string, ‘Hello’. The program prints 5 to the console, because Hello has five characters in it.

 

Instructions

  1. Use the .length property to log the number of characters in the following string to the console:

 

Teaching the world how to code

 

 

5/8 INTRODUCTION TO JAVASCRIPT

Built-in Methods

While the length of a string is calculated when an instance is created, a string instance also has methods that calculate new information as needed. When these built-in methods are called on an instance, they perform actions that generate an output.

Built-in methods are called, or used, by appending an instance with a period, the name of the method, and opening (() and closing ()) parentheses. Consider the examples below:

console.log(‘Hello’.toUpperCase()); // ‘HELLO’

console.log(‘Hey’.startsWith(‘H’)); // true

Let’s look at each line separately:

On the first line, the .toUpperCase() method is called on the string instance ‘Hello’. The result is logged to the console. This method returns a string in all capital letters: ‘HELLO’.

On the second line, the .startsWith() method is called on the string instance “Hey”. This method also accepts the character ‘H’ as an input between the opening and closing parentheses. Since the string ‘Hey’ does start with the letter ‘H’, the method returns the boolean true.

You can find a list of built-in string methods in the JavaScript documentation. Developers use documentation as a reference tool. It describes JavaScript’s keywords, methods, and syntax.

 

Instructions

  1. Use the .toUpperCase() method to log the string Codecademy to the console in all capital letters.
    Use console.log() to log the string to the console. Call .toUpperCase() on Codecademy inside of the parentheses.
  2. Use the JavaScript documentation to find a string method that trims the whitespace at the beginning and end of a string. Use the method to remove the whitespace at the beginning and end of the following statement (also in app.js):

 

 

‘    Remove whitespace   ‘

 

6/8 INTRODUCTION TO JAVASCRIPT

Libraries

Instance methods, by definition, require that you create an instance before you can use them. What if you want to call a method without an instance? That’s where JavaScript libraries come in. Libraries contain methods that you can call without creating an instance.

One such collection contains mathematical methods, aptly named the Math library.

Let’s see how you call the .random() method from the Math library:

console.log(Math.random()); // random number between 0 and 1

In the example above, we called the .random() method by appending the library name with a period, the name of the method, and opening (() and closing ()) parentheses. This method returns a random number between 0 and 1. This code prints a random number between 0 and 1.

To generate a random number between 0 and 50, we could multiply this result by 50, like so:

 

Math.random() * 50;

The answer in the example above will most likely be a decimal. To ensure the answer is a whole number, JavaScript provides a built-in method called Math.floor(). Math.floor() takes a decimal number, and rounds down to the nearest whole number. You can use Math.floor() to round a random number like this:

 

Math.floor(Math.random() * 50);

 

In this case:

  • Math.random generates a random number between 0 and 1.
  • We then multiply that number by 50, so now we have a number between 0 and 50.
  • Then, Math.floor rounds the number down to the nearest whole number.

 

Instructions

  1. Inside of a console.log, create a random number with Math.random, then multiply it by 100.
    You can generate a random number between 0 and 100 with:

Math.random() * 100

 

Since Math.random() will generate a number between 0 and 1, multiplying it by 100 will make the result between 0 and 100.

  1. Now, utilize Math.floor to make the output a whole number.
    Inside the console.log you wrote in the last step, put Math.random() * 100 inside the parentheses of Math.floor.

 

Math.floor(Math.random() * 100);

 

By placing Math.random() * 100 inside of the parentheses of Math.floor, we can make sure that the number generated will be a whole number. For instance, if Math.random() * 100 generated the number 64.65, Math.floor would make the result 64.
Note: Be careful of parentheses here. Each opening parentheses should have a closing parentheses.

 

  1. Find a method in the JavaScript math library that returns the smallest integer greater than or equal to a decimal number.
    Use this method with the number 43.8. Log the answer to the console.
    Use the .ceil() method to calculate the smallest integer greater than or equal to 43.8.
  2. Use the JavaScript documentation to find a method in the Number library that checks if a number is an integer.
    Put the number 2017 in the parentheses and use console.log() to print the result.

7/8 INTRODUCTION TO JAVASCRIPT

Comments

As we write JavaScript, we can create comments in our code.

Programs do not evaluate comments when you run them. In other words, they exist just for human readers. Good comments are useful for you and other developers, because they describe what the code does.

There are two types of code comments in JavaScript:

  • A single line comment will comment out a single line and is denoted with two forward slashes // preceding a line of JavaScript code.
    // The first 5 decimals of pi

 

console.log(‘Pi is equal to ‘ + 3.14159);

  • A multi-line comment will comment out multiple lines and is denoted with /* to begin the comment, and */ to end the comment.

 

/*

console.log(‘All of this code’);

console.log(‘Is commented out’);

console.log(‘And will not be executed);

*/

 

Instructions

  1. Let’s practice adding some code comments.
    To the right, we’ve provided you with the beginning of the book Catch-22 by Joseph Heller.
    On line 1, write a single line comment that says Opening line.
    Use // to make a single line comment.
  2. Single line comments are great for adding context to your code. Multi-line comments are often best suited to prevent a block of code from running. However, both types of comments can be used for either purpose.
    Comment out lines 4 – 9 with a multi-line comment.

 

//Opening line

console.log(‘It was love at first sight.’);

/*

console.log(‘The first time Yossarian saw the chaplain he fell madly in love with him.’);

console.log(‘Yossarian was in the hospital with a pain in his liver that fell just short of being jaundice.’);

console.log(‘The doctors were puzzled by the fact that it wasn\’t quite jaundice.’);

console.log(‘If it became jaundice they could treat it.’);

console.log(‘If it didn\’t become jaundice and went away they could discharge him.’);

console.log(‘But this just being short of jaundice all the time confused them.’);

 

*/

 

Review Types and Operators

 

  • Let’s take one more glance at the concepts we just learned:
  • Four essential data types in JavaScript include strings, numbers, booleans, and null.
  • Data is printed, or logged, to the console with console.log().
  • Four built-in mathematical operators include +, -, *, and /.
  • JavaScript associates certain properties with different data types.
  • JavaScript has built-in methods for different data types.
  • Libraries are collections of methods that can be called without an instance.
  • You can write single-line comments with // and multi-line comments between /* and */.
  •  
 

Sé el primero en comentar

Deja una respuesta