Intro to JavaScript

Chapter

  • 1

    Chapter 1

    Learn what JavaScript is and why you would use it.

    Estimated time: ~31 Minutes
  • 2

    Chapter 2

    Functions provide a powerful tool to organize your code and to break down a large program into smaller subprograms.

    Estimated time: ~33 Minutes
  • 3

    Chapter 3

    The basic math operators and an introduction to conditional statements.

    Estimated time: ~45 Minutes
  • 4

    Chapter 4

    Loops help you deal with repetitive tasks

    Estimated time: ~18 Minutes
  • 5

    Chapter 5

    Objects help you group related data and functions and can be extremely important for building complex programs.

    Estimated time: ~36 Minutes
  • 6

    Chapter 6

    An array is an object that is built into JavaScript. It can make dealing with a series of related data much easier.

    Estimated time: ~45 Minutes
  • Exam

    Locked

    You must complete all chapters before taking the course exam.

Concept

  • 1

    Concept 1

    The for loop is especially convenient when looping a set a number of times.

    Estimated time: ~6 Minutes
  • 2

    Concept 2

    The while loop is convenient when you want to loop until a condition changes.

    Estimated time: ~4 Minutes
  • 3

    Concept 3

    The do loop is very similar to a while loop, but it is useful when you always want to execute the loop at least once.

    Estimated time: ~6 Minutes
  • Test

    Chapter 4 Test

    Take the chapter 4 test and unlock the JavaScript Loops badge.


Concept 1: for Loop

The for loop is especially convenient when looping a set a number of times.

edit

You are making progress towards completing chapter 4 and unlocking the JavaScript Loops Badge

This badge is worth: 50 Points

For this concept you will only be watching a portion of the video: - .

Ask a Question

Send me an email when someone posts a reply

Questions & Answers

  • 0 Likes
    Aug 17th, 2012
    DinaM asks:
    OK so I take one of the quizzes and I select an
    answer which turns out to be incorrect, however,
    the correct answer was the same as the
    (incorrect) answer I chose...to the number. Just
    wanted to point that out in case it's
    missing something.

    I'm noticing a few typos in these quizzes as
    well because another one I took had an
    incorrectly placed apostrophe ( ' ) before
    the (correct) answer and I think I ended up
    getting the wrong answer because of this. If
    there isn't supposed to be one, please fix
    that and if there is, there was nothing in the
    video explaining that and why...so yeah

    thanks

Quiz Questions

Concept 1: for Loop