// Prototypal inheritance
// OLOO (Objects Linked to Other Objects)
// There are some variations on how this can be implemented. The below is one interpretation.
// -----------------
// create a car object
let Car = {
make: 'Ford',
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ES6 class syntax | |
// ----------------- | |
// Car class | |
class Car { | |
constructor(make, model, price) { | |
this.make = make; | |
this.model = model; | |
this.price = price; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Classical inheritance | |
// ----------------- | |
// Car class | |
function Car(make, model, price) { | |
this.make = make; | |
this.model = model; | |
this.price = price; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Circle(x = 50, y = 50, r = 100, col = '#f00') { | |
this.x = x; | |
this.y = y; | |
this.r = r; | |
this.col = col; | |
this.vx = random(-5,5); | |
this.vy = random(-5,5); | |
} | |
Circle.prototype.move = function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.16/p5.js"></script> | |
<script src='./sketch.js'></script> | |
<title>P5.js</title> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ------------------------------- | |
// Example without method chaining | |
// ------------------------------- | |
let MathsLib = { | |
num: 10, | |
addTwo() { | |
this.num += 2; | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---------------------------- | |
// Parent class (or superclass) | |
// ---------------------------- | |
function Circle(x = 50, y = 50, r = 100, col = '#f00') { | |
this.x = x; | |
this.y = y; | |
this.r = r; | |
this.col = col; | |
this.vx = random(-5,5); | |
this.vy = random(-5,5); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---------------------------- | |
// Parent class (or superclass) | |
// ---------------------------- | |
function Circle(x = 50, y = 50, r = 100, col = '#f00') { | |
this.x = x; | |
this.y = y; | |
this.r = r; | |
this.col = col; | |
this.vx = random(-5,5); | |
this.vy = random(-5,5); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---------------------------- | |
// Parent class (or superclass) | |
// ---------------------------- | |
class Circle { | |
constructor(x = 50, y = 50, r = 100, col = '#f00') { | |
this.x = x; | |
this.y = y; | |
this.r = r; | |
this.col = col; | |
this.vx = random(-5,5); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Source: https://stackoverflow.com/questions/10008050/get-age-from-birthdate | |
function getAge() | |
{ | |
let today = new Date(); | |
let birthDate = new Date(this.dob); | |
let age = today.getFullYear() - birthDate.getFullYear(); | |
let m = today.getMonth() - birthDate.getMonth(); | |
if (m < 0 || (m === 0 && today.getDate() < birthDate.getDate())) | |
{ | |
age--; |