# Additional Resources 3

## Introduction <a href="#introduction" id="introduction"></a>

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

## JavaScript

1. [FreeCodeCamp: Basic JavaScript Exercises](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/#basic-javascript)

## Functions

1. [MDN: Functions - Reusable Blocks of Code](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Functions)
2. [MDN: Function Return Values](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Return_values)
3. [JavaScript.info: Functions Basics](https://javascript.info/function-basics)
4. [JavaScript.info: Function Expressions](https://javascript.info/function-expressions)

## Errors

1. [G4G: Difference between Compiled and Interpreted Languages](https://www.geeksforgeeks.org/difference-between-compiled-and-interpreted-language/)
2. [FCC Blog: Interpreted vs Compiled, What's the Difference?](https://www.freecodecamp.org/news/compiled-versus-interpreted-languages/)
3. [FCC Exercise: Debugging](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/#debugging)
4. [MDN: SyntaxError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError)
5. [MDN: ReferenceError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError)
6. [MDN: TypeError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError)
