Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

Web Development 1- JS

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.


Instructor

  • Sean Doyle

What We Learn

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

JS meme

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.


Learning Resource

W3School


Code Sample - JS

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

  1. We have learned the above topics by now:

About

A repository to store all the course content files for 'Web Development 1'

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors