Skip to content

Instantly share code, notes, and snippets.

@yortuc
Created February 28, 2015 18:00
Show Gist options
  • Save yortuc/ce53af84e2de55d545b4 to your computer and use it in GitHub Desktop.
Save yortuc/ce53af84e2de55d545b4 to your computer and use it in GitHub Desktop.
var List = require("./List.js");
// List denemesi
var list = new List();
list.add("stratocaster");
list.add("telecaster");
list.add(1950);
console.log(list.data);
list.remove("telecaster");
console.log(list.data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment