tw-oocamp-201512 / the-code-of-you

使用你最喜欢的语言写一段代码来介绍你自己,提交在Issues里
1 stars 1 forks source link

hule's introduction #7

Open huleTW opened 8 years ago

huleTW commented 8 years ago
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();
huleTW commented 8 years ago

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.