Question 7
Consider the following Script embedded in an HTML document.
let myQual = { degree: "B-tech", college: "IIT Delhi", get qualification(){ return `degree: ${this.degree}, college: ${this.college}` }, set qualification(q){ let components = q.split(' '); this.degree = components[0]; this.college = components[1]; } }Which of the following statements will throw an error on the console when the HTML document is rendered using a browser?