9 lines
No EOL
211 B
JavaScript
9 lines
No EOL
211 B
JavaScript
/**
|
|
* constructor function for vote objects
|
|
*/
|
|
function constructor(choice, usr) {
|
|
this.choice = choice;
|
|
this.user = usr;
|
|
this.username = usr.name;
|
|
this.createtime = this.modifytime = new Date();
|
|
} |