Skip to content

Instantly share code, notes, and snippets.

@kuc-arc-f
Created June 5, 2014 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuc-arc-f/02e41d0b998a7962e5d2 to your computer and use it in GitHub Desktop.
Save kuc-arc-f/02e41d0b998a7962e5d2 to your computer and use it in GitHub Desktop.
js, sample 0605P2
var Item = function() {
this.id = 0;
this.title =''
this.url = '';
this.toString = function() {
window.alert(this.id + " ," + this.title+ ", "+ this.url_b );
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment