How to use static get (getter) property in classes with JavaScript

1 Answer

0 votes
class MT {
    static get random() {
        return Math.random();;
    }
}

console.log(MT.random);



     
/*
run:
   
0.6495143544087876
 
*/

 



answered Mar 6, 2020 by avibootz
...