Question 16
Consider the following JavaScript Code.
class Person { constructor(name) { this.name = name; }
greet() { console.log(`Hello, my name is ${this.name}`); }
static identify() { console.log("I am a Person class"); }}
const john = new Person("John");Which of the following expression(s) will cause an error?