function Person(name) {
    console.log('Here I am :D');
    this.name = name;
}

Person.prototype = {
    constructor: Person,
    isHuman: true
};

const conner = new Person('Conner');
const clement = new Person('Clement');
// they have different name 
console.log(conner);
console.log(clement);
// they have same prototype
console.log(Object.getPrototypeOf(conner));
console.log(Object.getPrototypeOf(clement));
console.log(Object.getPrototypeOf(clement) === Object.getPrototypeOf(clement));

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.