Author: Hayden Smith 2021
Building front-ends are not covered in COMP1531. CSE offers a few courses relating to them though:
Â
These skills will help prevent you building bad interfaces.
Â
Today we're going to write a very basic web application - a number input and increment/decrement button.
Javascript is the "programming language" of front-ends. The interpreters for the language are built directly into your web browser. Most modern web browsers build their Javascript interpreter on top of the popular V8 engine.
Â
Javascript will feel more familiar to you than HTML/CSS.
Â
Javascript is mainly used to essentially dynamically manipualte CSS properties on HTML elements as a result of various events that occur (user clicks, keyboard, timers).