Skip to content

Latest commit

 

History

History
85 lines (64 loc) · 7.94 KB

fundamentals-2.md

File metadata and controls

85 lines (64 loc) · 7.94 KB

Introduction

There are a few extremely common types of data that you will encounter in JavaScript, and these fundamentals lessons will give us a really strong foundation in all of them. Before we start digging deep, however, this article will give you a quick overview of the most common ones.

Lesson Overview

This section contains a general overview of topics that you will learn in this lesson.

  • Name the eight data types in JavaScript.
  • Understand the difference between single, double, and backtick quotes.
  • Embed a variable/expression in a string.
  • Understand what a method is.
  • Name the three logical operators.
  • Understand what the comparison operators are.
  • Understand what conditionals are.
  • Understand what nesting is.
  • Understand what truthy and falsy values are.

Strings

Depending on what kind of work you're doing, you might end up working more with pieces of text rather than numbers. A string is simply a piece of text... and is a fundamental building block of the language.

  1. Read and code along with yet another MDN tutorial on the topic.
  2. Go through this lesson to learn a bit more about what you can do with strings... be sure to take a peek at the String Reference page near the bottom, and do the exercises at the end!
  3. Vocabulary time: a method is a bit of functionality that is built into the language or into specific data types. In the previous W3Schools exercise, you learned a few methods that can be used on strings, such as replace and slice. An exhaustive list of methods that can be used on strings can be found here.

Conditionals

Now it's time for the fun stuff... So far we haven't done much with our programming that you couldn't do with simple math skills. Sure, we've told our computer how to do the math, so that makes it quicker, but the essence of programming is teaching the computer how to make decisions in order to do more involved things. Conditionals are how we do that.

  1. Step one in learning about conditionals is making sure you have a good grasp on comparisons.
  2. This tutorial is a great first glance at conditionals in JavaScript.
  3. This tutorial will teach you about logical operators.
  4. This article reinforces the concept and provides several interesting examples of how you could use it building websites.
  5. This article covers the same basic concept (read through it as a review!) and - more importantly - offers the usual 'tasks' at the bottom of the page!
  6. This tutorial teaches you about the switch statement, which comes in handy when you have multiple conditions.

Assignment

To give you a good bit of practice, we have created some replit.com exercises for you to play with. We believe that it's best to practice programming on your own computer, rather than in an online environment, but we'll get to that soon enough.

Be sure to do the lessons in order presented here. Pressing "run" at the top will run the code. Read all directions, watch the terminal, and read all the errors. Don't forget to use 'console.log' extensively.

To get started, create a free repl account and click "Fork" in order to have access to the exercises. Note: Feel free to browse the files on the left column in order to gain familiarity with it.

  1. Exercise 1
    • In this exercise, you will be working out of the file called troubleshooting.js
  2. Exercise 2
    • You will be working out of script.js
  3. Exercise 3
    • You will be working out of math.js
  4. Exercise 4
    • You will be working out of follow.js

Additional Resources

This section contains helpful links to other content. It isn't required, so consider it supplemental.

Knowledge Check

This section contains questions for you to check your understanding of this lesson on your own. If you’re having trouble answering a question, click it and review the material it links to.