Javascript

Basics Recap

Functions

function helloWorld() {
	console.log("Hello World");
}
let helloWorld = function() {
	console.log("Hello World");
}

-> Arrow Functions

let sum = function(a, b) {
	return a + b;
}
let sum = (a,b) => a + b;

Algorithms

  • Patience Sorting
  • Library Sorting
  • PageRank 
  • Kosaraju 
  • Branch & Bound
  • .....
  • ....
  • ...
  • ..
  • .
  • n

Callbacks

Promises

Async & Await

IIFE

Scopes

Modules Pattern

Apply,Call,Bind

This week quest!!!

  • Create a server for tic-tac-toe
  • FE should interact with server
  • Handle the validation 

 

JS Advance

By Maggie

JS Advance

  • 95