Question: What could you add to this directive class to allow the truncate length to be set during directive usage in markup?
- `@Input() appTruncate: number;`
- `@Output() appTruncate;`
- `constructor(maxLength: number) { }`
- `Nothing. The directive selector cannot be used to pass in values to the directive.`
Answer: The correct answer of the above question is Option A:`@Input() appTruncate: number;`