DECO1400 Lecture 8

JavaScript Variables

Defining with let

var x = 2;
var x = 3; // not allowed

{
    let x = 4;
    let x = 5; // not allowed
}

{
    let x = 6;
    let x = 7; // not allowed.
}

Defining with const

const PI = 3.14159265;
PI = 3.14;   // not allowed, will give error
PI = PI + 10 // not allowed, will give error
// You can create a constant array
const cars = ["Saab", "Volvo", "BMW"];
// You can change the value of an element
cars[0] = "Toyota";
// You can add a new element
cars.push("Audi");

// However, you cannot re-assign an array
cars = ["Toyota", "Volvo", "Audi"]; // Will give an error

JavaScript Data Types

const pi = 3.14;
let person = "John Smith"
const cars = ["Saab", "Volvo", "BMW"];
let car = cars[0];

Document Object Model (DOM)

Figure 1 - Document Object Model tree for a webpage

Creating Dynamic Pages with JS


Source: W3 Schools

JavaScript Form Validation - Client Side Validation

Navigation Systems

Figure 2 - Related, but unique identities of different sites on BBC's pages.

Types of Navigation

What Not to Do

Good Practice Standards

Figure 3 - Typical website layout

CSS Positioning