Pages

Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts

ResizeThatShit

ResizeThatShit is a JavaScript game that describes itself as a responsively designed jigsaw puzzle for the browsing elite.

JavaScript typeof null

JavaScript can be so cruel.

typeof null === 'object'; // This stands since the beginning of JavaScript

This is planned on being fixed in the next version of ECMAScript (which will be available via an opt-in). It will result in typeof null === 'null'.

Note: it's been rejected

See

Sorting Algorithm Demonstration

Sorting algorithm visualization: Insertion, Selection, Bubble, Shell, Merge, Heap, Quick, Quick3.

Path Finding Algorithm Visualization

Very cool JavaScript based, interactive visual demonstration of path finding algorithms: A*, Breadth-First-Search, Best-First-Search, Dijkstra, and Jump Point Search.

Dijkstra Path Finding Visualization