Node.js os 模块 ES6 Math.atan(x) 函数 ES6 Math.atan2() 函数 Node.js os 模块 var os = require("os"); // Endianness console.log('endianness : ' + os.endianness()); // OS type console.log('type : ' + os.type()); // OS platform console.log('platform : ' + os.platform()); // Total system memory console.log('total memory : ' + os.totalmem() + " bytes."); // Total free memory console.log('free memory : ' + os.freemem() + " bytes."); ES6 Math.atan(x) 函数 ES6 Math.atan2() 函数