Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

function Staff( in_staffid, in_name ) {

this.staffid = in_staffid;

this.name = in_name;

var myStaff = new Staff(333, "Ass");

myStaff.greet = function(){

alert("Hello, I'm " + this.name);

var staffArr = [];

staffArr.push(myStaff);

var myStaff2 = new Staff(555, "Jill");

staffArr.push(myStaff2);

alert(staffArr[1].name)

alert(Math.round(Math.random()*10))

alert(Math.pow(2,3))

You might also like