Choice.constructor (title)
constructor function for choice objects

Sourcecode in Choice/objectFunctions.js:
1:   function constructor(title) {
2:      this.title = title;
3:      this.createtime = this.modifytime = new Date();
4:      return this;
5:   }