<!DOCTYPE html>charset="utf-8"W3Cschool教程(w3cschool.cn)function employee(name,jobtitle,born){this.name=name;this.jobtitle=jobtitle;this.born=born;}var fred=new employee("Fred Flintstone","Caveman",1970);employee.prototype.salary=null;fred.salary=20000;document.write(fred.salary);