JavaScript Assignment
W3/mainweb.html
Car Objects
W3/myscript/carscript.js
class Car { var Make : String; var Model : String; var Year : Integer; var Color : String; var FullName : String; function Car (make, model, year, color) { this.Make = make; this.Model = model; this.Year = year; this.Color = color; this.FullName = this.Year + " " + "<b>" + this.Make + "</b> " + this.Model; } }
W3/myscript/carscript.txt
class Car { var Make : String; var Model : String; var Year : Integer; var Color : String; var FullName : String; function Car (make, model, year, color) { this.Make = make; this.Model = model; this.Year = year; this.Color = color; this.FullName = this.Year + " " + "<b>" + this.Make + "</b> " + this.Model; } }