How to get the list of all Math standard built-in object methods (functions) in Node.js

1 Answer

0 votes
console.log(Object.getOwnPropertyNames(Math).filter(function (p) {
    return typeof Math[p] === 'function';
}));
 
 
 
/*
run:
 
[
'abs'
'acos'
'acosh'
'asin',
'asinh'
'atan'
'atanh'
'atan2',
'ceil'
'cbrt'
'expm1'
'clz32',
'cos'
'cosh'
'exp'
'floor',
'fround'
'hypot'
'imul'
'log',
'log1p'
'log2'
'log10'
'max',
'min'
'pow'
'random'
'round',
'sign'
'sin'
'sinh'
'sqrt',
'tan'
'tanh'
'trunc'
]
 
*/

 



answered Jun 9, 2022 by avibootz
...