This is an implementation of the Tic Tac Toe project in the Javascript series from the Full Stack Javascript Path in the The Odin Project
This implementation is being done after learning more important concepts about Javascript such as :
- Prototypes and it's importance in JS, how prototypical inheritance works in JS.
- Function Scopes, Lexical scopes and closures.
- Problems with function based constructors,classical inheritance and how to use factory functions.
- Modules and namespacing, and private and public functions and variables using factory functions.
- IIFE( Immediately Invoked Function Expression) and it's role in factory functions.