In the constructor, we want to set the prop to readonly, you need to do like this:
class Superhero { readonly name: string constructor( name: string, editor: string, createdYear: number ) { name = this.name; } }