Skip to content

Instantly share code, notes, and snippets.

@yortuc
Created February 28, 2015 18:00
Show Gist options
  • Save yortuc/83b047e21e161c90d097 to your computer and use it in GitHub Desktop.
Save yortuc/83b047e21e161c90d097 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