0.0.2 • Published 11 years ago

dsjs v0.0.2

Weekly downloads
8
License
-
Repository
-
Last release
11 years ago

dsjs.js

This project is for educational purposes, more than production like material.

I created this library to learn more about the Javascript world, and try to learn more about the language itself. I used the following tools, libraries and frameworks:

Nodejs, YUIDocs, Mocha and jscoverage

Node

var n = new dsjs.Node();
n.value = 10;

LinkedList

var l = new dsjs.LinkedList();
var n = new dsjs.Node();
l.addFirst(n);