Javascript Math LOG10E

Introduction

The Math.LOG10E property represents the base 10 logarithm of e, approximately 0.434:

The following function returns the base 10 logarithm of e:

console.log(Math.LOG10E);



PreviousNext

Related