JavaScript Bootcamp

Web Application Path

Rate This Course

Please share your feedback

Skip

JavaScript Bootcamp with Rob Tietje

Basic Operations

Basic Operations

JS

This lesson covers some basic operations in JavaScript such as:

  • Creating variables
  • Assignment
  • Math Operators
  • Operator precedence


JavaScript.pdf

6m 8s
Completed
Lessons
Getting Started
1 Introduction 2m 24s
2 Basic Operations 6m 8s
3 Strings 5m 53s
Fundamentals
4 Dynamic Object Memory 3m 54s
5 Conditional Expressions 7m 46s
6 Conditional Expressions p2 7m 57s
7 Arrays 3m
8 Loops 9m 3s
9 Functions 5m 29s
10 Classes 8m 2s
11 Classes p2 2m 40s
jQuery JavaScript Library
12 jQuery 3m 27s
13 jQuery Selectors 10m 48s
14 jQuery click event 2m 24s
Web Application
15 Final Project 12m 53s
Assignment
1

Solve the following math problem by writing a JavaScript program

A man travels for 12 hours and averages 66 miles per hour. Calculate how far he traveled.

2

Figure out the value of result in each expression by hand

result = 2 + 2 * 2;
result = (2 + 2) * 2 - 2;
result = 1 / 1 + 1 - 1 * 2

3

Variables are written using camel case. Do some research on the convention

Wikipedia: Camel Case