var string = function (base) {
return {
add: function (added) {
return base + added;
}
}
}
text = string("robots").add(" are awesome");
console.log(text);
// robots are awesome
text2 = string("robots").add(" are awesome").add(" everytime!");
console.log(text2);
// TypeError: Object robots are awesome has no method 'add'
How do I make this work? What can you do to share the method 'add' across certain objects within the scope of the function?