document.write('
解析:
function xs(name,age,frIEnd){
 this.name=name;
 this.age=age;
 this.frIEnd=frIEnd;
}
xs.prototype.play=function(){
 alert("football")
var s = new xs("Jeriy",22,["li","chen","zhang"]);
s.play(); 
');