From the javascript console in Chrome:
> function Person(name){this.name=name;} undefined
At this point, Person.prototype should be an empty
Chrome's console is a developer tool. It is meant to show in-depth info. In this case, you're looking at the pre-defined properties of the class you just defined.