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

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

Niu Wanlu Profile #9

Open niuwanlu opened 8 years ago

niuwanlu commented 8 years ago
var profile = (function() {
    var content = '';

    addIntroduction = function(item) {
            content += item + '\n';
    }

    function getIntroduction() {
        return content;
    }

    return getIntroduction;
}() );

addIntroduction('Hello, everyone. My name is Niu Wanlu.');
addIntroduction('I graduated in January.');
addIntroduction('I have used Java and JavaScript.');
addIntroduction('I am in Telstra Le-tigre Team now.' );
addIntroduction('Very Glad to learn with you all in this bootcamp.');

console.log(profile());
niuwanlu commented 8 years ago

Hello, everyone. My name is Niu Wanlu. I graduated in January. I have used Java and JavaScript. I am in Telstra Le-tigre Team now. Very Glad to learn with you all in this bootcamp.