ES6 Classes & Constructors

What is the purpose of the static method in this class?
class Person {
  constructor(name) {
    this.name = name;
  }
  
  static create(name) {
    return new Person(name);
  }
}
Next Question (4/28)