Get Programming with JavaScript - Videos
Part 1 – Core concepts on the console
Chapter 2 – Variables: storing data in your programs
Chapter 3 – Objects: grouping your data
- Creating an object to represent a book
- Setting object properties with dot notation
- Using a variable as a property value
Chapter 4 – Functions: code on demand
- A simple function definition
- A function that calls functions
- Adding numbers. Concatenating strings
- Using a function to display object properties
- Switching the object used by a function
Chapter 5 – Arguments: passing data to functions
Chapter 6 – Return values: getting data from functions
Chapter 7 – Object arguments: functions working with objects
- Passing an object as an argument
- Adding a property to an object argument
- Returning a new object without changing the old