Skip to content

Instantly share code, notes, and snippets.

@vestige
Created April 24, 2012 13:39
Show Gist options
  • Save vestige/2479746 to your computer and use it in GitHub Desktop.
Save vestige/2479746 to your computer and use it in GitHub Desktop.
waffle.js
function Waffle() {
return {
tastes: "yummy"
};
};
var first = new Waffle();
var second = Waffle();
document.writeln(first.tastes);
document.writeln(second.tastes);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment