ES6 Classes & Constructors
What characteristic does the 'title' property have in this class?
class Task {
constructor(title, isCompleted = false) {
Object.defineProperty(this, 'title', {
value: title,
writable: false,
enumerable: true
});
this.isCompleted = isCompleted;
}
}