2016年12月27日 星期二

最簡單的方法在 nodejs 定義 const static member variable


How to define a static const member variable
Jing, mqjing@gmail.com
GitHub: Download

Google Doc: This Document.

const port = 33;

class MyClass {
 static get port() {
   return port;
 }
}


function main(){
 console.log('static const member' , MyClass.port);   // print: 33
 MyClass.port = 45;

 console.log('static const member' , MyClass.port);   // print: 33

}

main();


e.g.


Reference