Under the section about PascalCase in Naming Conventions is the block
// good
function User(options){
this.name = options.name;
}
As per the Whitespace section, there should be a space between the closing parens and the brace on the function definition.