Question 13
Consider the following JavaScript code:
class Region { constructor(region) { this.region = region; } describe() { return `${this.region} is a region.`; }}
class Country extends Region { constructor(region, name) { super(region); this.name = name; } describe() { return `${this.name} is in ${this.region}.`; }}
let r = new Region("Asia");let c = new Country("Europe", "Germany");let f = c.describe;Which of the following statements are true?