Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jefferson1104/javascript-course
Course programming with javascript developed by the company Meta.
https://github.com/jefferson1104/javascript-course
javascript jest-tests unit-testing
Last synced: 2 days ago
JSON representation
Course programming with javascript developed by the company Meta.
- Host: GitHub
- URL: https://github.com/jefferson1104/javascript-course
- Owner: jefferson1104
- Created: 2022-08-07T16:04:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-31T11:58:05.000Z (about 2 years ago)
- Last Synced: 2023-03-04T16:47:34.425Z (over 1 year ago)
- Topics: javascript, jest-tests, unit-testing
- Homepage: https://www.coursera.org/account/accomplishments/verify/8RLZD7X768QZ
- Size: 599 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Course syllabus
This course is the second of a series that aims to help you learn more about web development.In this course, you will explore the following:
#### Module 1: Introduction to JavaScript
In this module, you are introduced to JavaScript. You'll learn why JavaScript is so integral to software development. And you'll get an overview of how to write JavaScript code inside the browser. Furthermore, you will learn about the most common operators as well as conditional statements and loops.
After completing this module, you will be able to:
- Explain the importance of JavaScript in software development
- Demonstrate how to write JavaScript code inside the browser
- Demonstrate how to write basic JavaScript code
- List common operators, conditional statements and loops
- Demonstrate how to use variables and output their value in the console
#### Module 2: The building blocks of a program
Here you'll learn how to use objects, arrays and functions. In addition, you will learn about the most common built-in methods, and the difference between undefined, null and empty strings. And you'll explore both error handling and defensive programming.
After completing this module, you will be able to:
- Build and use objects, arrays, and functions
- List some common built-in methods on built-in objects
- Describe handling bugs and errors using try, catch, throw, and defensive programming
- Explain the difference between undefined, null, and empty strings
- Demonstrate how to write basic code using arrays, objects and functions#### Module 3: Programming paradigms
This module is about functional programming and the object oriented programming paradigm. You will learn what scope is in JavaScript. You'll explore the differences between var, let and const. And you'll learn how to use classes and inheritance in object oriented programming. Additionally, you'll explore how to use write JavaScript using modern features like spread and rest. You will build code that can manipulate the DOM and handle events. And you will use JSON in JavaScript.
After completing this module, you will be able to:
- Outline the tenets of the functional programming and object oriented programming paradigm
- Describe how scope works in JavaScript
- List the differences between var, let, and const
- Use classes and inheritance in OOP in JavaScript
- Write JavaScript code using more modern features like spread, rest, template strings and modules
- Build code that manipulates the DOM and handles events
- Use JSON in JavaScript
#### Module 4: Testing and compatibility
Here you will learn about Node.js and npm. And you will explore how to install npm packages and how to work with package.json. Furthermore, you will learn about testing in JavaScript and you'll code a simple unit test in Jest.
After completing this module, you will be able to:
- Describe Node.js and npm
- Explain how to install npm packages
- Describe how to work with package.json
- Explain the process of testing in JavaScript
- List the three most prevalent kinds of testing
- Demonstrate how to code a simple unit test in Jest