Skip to content

JS Lesson Plan

Jack Armley edited this page Jul 12, 2017 · 2 revisions

Content types

There are a number of different types of content you can work with in JS. We'll go through 3 basic ones.

// Interger
5

// String
'Hello'

// Boolean
true

Variables

These content types can be stored as variables for use in your program.

 var greeting = 'Hello';

Operations

Functions

Clone this wiki locally