var basicInfo = {
name:"hule",
workingYears: 2,
currentProject : "CMB Project",
language:["java","js"]
};
function greeting(){
console.log("Hello everyone. Nice to meet you~");
};
function selfIntroduction(basicInfo) {
console.log("My name is " + basicInfo.name+".");
console.log("I have "+basicInfo.workingYears+" years working experience.");
console.log("Now I am involved in "+ basicInfo.currentProject+".");
console.log("I like "+ basicInfo.language +"etc.");
};
function endWords(){
console.log("Thank you!");
console.log("I am sure I will learn a lot in this training.")
};
greeting();
selfIntroduction(basicInfo);
endWords();
Hello everyone. Nice to meet you~
My name is hule.
I have 2 years working experience.
Now I am involved in CMB Project.
I like java,jsetc.
Thank you!
I am sure I will learn a lot in this training.