Chapter 8: Forms
For Chapter 8, see code examples
Chapter 12: Object Oriented Programming
Dice Example Three Ways
Dice Object
const dice = { sides: 6, roll() { return Math.floor(this.sides * Math.random() + 1) } }
Constructor Function
const Dice = function(sides=6){ this.sides = sides; this.roll = function() { return Math.floor(this.sides * Math.random() + 1) } }
Now create an instance of the dice constructor function: const redDice = new Dice();
Class Declaration (Preferable to Constructor)
class Dice { constructor(sides=6) { this.sides = sides; } roll() { return Math.floor(this.sides * Math.random() + 1) } }
Now create an instance of the class: const blueDice = new Dice(20);
Static Methods
A static method can be called by the class, but not the instance of the class.
Example
class Dice { constructor(sides=6) { this.sides = sides; } roll() { return Math.floor(this.sides * Math.random() + 1) } static description() { return 'A way of choosing random numbers' } }
Dice.description() Returns: 'A way of choosing random numbers'
redDice.description Returns: TypeError: red.description is not a function
Prototypal Inheritance
Every prototype property of the class is shared by every instance of the class.
Add New Properties by Assignment
Turtle.prototype.weapon = 'Hands';
Add New Method
Turtle.prototype.attack = function(){ return `Feel the power of my ${this.weapon}!`; }
The new instance will inherit the weapon property and attack method
const raph = new Turtle('Raphael');
raph.name
Returns: 'Raphael'
raph.sayHi()
Returns: 'Hi dude, my name is Raphael'
raph.weapon
Returns: 'Hands'
raph.attack()
Returns:'Feel the power of my Hands!'
Overwrite Prototype Properties
An instance can overwrite prototype inherited properties or methods.
leo.weapon = 'Katana Blades';
Getters and Setters
How to Write a Private Property
class Turtle {
constructor(name,color) {
this.name = name;
let _color = color;
this.setColor = color => { return _color = color; }
this.getColor = () => _color;
}
}
We can use this to make sure the color has to be a string.
this.setColor = (color) => {
if(typeof color === 'string'){
return _color = color;
} else {
throw new Error('Color must be a string');
}
}
Using Extends
Regular Turtle
class Turtle { constructor(name) { this.name = name; } sayHi() { return `Hi dude, my name is ${this.name}`; } swim() { return `${this.name} paddles in the water`; } }
Ninja Turtle
class NinjaTurtle extends Turtle { constructor(name) { super(name); this.weapon = 'hands'; } attack() { return `Feel the power of my ${this.weapon}!` } }
Polymorphism
Different objects with the same method that is implemented in different ways. toString() is a good example.
Create Objects From Objects
Prototype For Human Objects
const Human = {
arms: 2,
legs: 2,
walk() { console.log('Walking'); }
}
Create and instance of Human: const lois = Object.create(Human);
Modular JavaScript
The code in a module should have a single purpose. You should easily be able to swap out pieces without it affecting other parts of a project.
Module Example
This would be saved in a file called 'pi.js': const lois = Object.create(Human);
You would import it into your main file like: import { PI } from './pi.js';