Hello World
Last updated
Was this helpful?
Was this helpful?
(function () {
app = app || {};
app.myComponent = function () {
...
}
})();
...
new app.myComponent().render("component1");var myComponent = function () {
this.render = function (el, config) {
document.getElementById(el).innerHTML = config.value;
}
}<div id="component1"></div>
...
new myComponent().render("component1", {
value: "Hello World"
});