JavaScript Topics for CS559

These are tutorials and pages that discuss how to program in JavaScript in general, with a focus on how we use it in CS559.

Included is a a two part tutorial on doing Traditional Object-Oriented Programming in JavaScript, and some other thing useful for class.

Typed JavaScript and CS559

in JavaScript Topics for CS559

JavaScript does not require you to declare the types of your variables, function arguments, objects, object properties, or much of anything. However, if you give it some hints as to what you expect (as comments in your code), you can help a reader understand your program, and software tools find mistakes.

This page describes some programming practices that are recommended for CS559.

Read more…