patryk-developer
5/17/2018 - 7:21 PM

Funkcje statyczne

// funkcje statyczne
// ================

class StaticClass {
    static printTwo() {
        console.log(`2`);
    }
}

StaticClass.printTwo();