Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.27 KB

additional-resources-3.md

File metadata and controls

35 lines (26 loc) · 2.27 KB
description
For the curious and the hungry

Additional Resources 3

Introduction

If you'd like to learn more, this page contains a non-exhaustive, unordered list of useful resources. These resources are primarily related to Module 3, but also expand the scope of what has been covered, and touch on concepts and fundamentals that we will cover in future modules. You will see some of these resources repeated in other pages.

Logic

  1. Brilliant.org: Computer Science Fundamentals
  2. JavaScript.info: Comparisons
  3. FCC: Basic JavaScript - Use Conditional Logic with If Statements
  4. W3S: JavaScript if else if``
  5. Kenrickles: ifs vs if else ifcode demonstration
  6. MDN: Making Decisions in Your Code
  7. W3S: JavaScript Switch Statement
  8. Digital Ocean: How to Use the Switch Statement in JavaScript

Loops

  1. MDN: Loops
  2. JavaScript.info: while and for loops
  3. FreeCodeCamp: Loop Exercises

Input Validation

  1. JavaScript String Methods:
    1. .toLowerCase()
    2. .toUpperCase()
    3. .trim()
    4. .includes()
    5. .split()