rozdzia: Mocne Strony
==================
<html><body><pre><script src="program.js">
</script></pre></body></html>
    
    
====================================
document.writeln('Hello, world!');
    
    
====================================
Function.prototype.method = function (name, func) {
    this.prototype[name] = func;
    return this;
};
    
    
==================