Skip to content

Instantly share code, notes, and snippets.

@zoolu-got-rhythm
Created January 8, 2016 15:59
Show Gist options
  • Save zoolu-got-rhythm/667e5917b4d82204850d to your computer and use it in GitHub Desktop.
Save zoolu-got-rhythm/667e5917b4d82204850d to your computer and use it in GitHub Desktop.
function Node(node){
if(typeof node !== "string"){
throw new Error("please inset a string");
} else {
this.node = node;
}
}
var node1 = new Node("kieron");
@KieronWiltshire
Copy link

Lol did I inspire you much? haha

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment