Created
June 5, 2014 08:37
-
-
Save kuc-arc-f/02e41d0b998a7962e5d2 to your computer and use it in GitHub Desktop.
js, sample 0605P2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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