Réponse

let b = new Person("Bob", "Dylan");

Colonne
Explication

This code means that the "Person" constructor function already exists and takes two string parameters.

Question

code - create instance "b" invoking the Person constructor with parameters "Bob" and "Dylan"

Thématique