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());
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.