A repository to store all the course content files for 'Web Development 1 JavaScript'. It includes files like class notes, assignments, labs, etc. for the course.
- Sean Doyle
In this class, we look at the core principles for JavaScript scripting language. We learn about its components and the ways it can be used to make our websites more engaging.1
A programming meme for JS"
📝 Note: This class is very fun because of the fact that it requires a lot of thinking and also because of our tutor Sean.
const person = {fname:"John", lname:"Doe", age:25};
let text = "";
for (let x in person) {
text += person[x];
}- JS principles
- Arithmetic operations
- Operators
- Conditional statements
- Loops
- Objects
- Arrays
- Functions
- Events handling
- Form handling
Footnotes
-
We have learned the above topics by now: ↩
