Newbie question

What the “new” thingy do? ex: new Date() , I know it means to create a new date object but whats the difference between code such as : date = new Date(); sec = date.getsecond and: date = Date(); sec = date.getsecond?