T
Size: a a a
T
来q
NV
来q
L
L
来q
T
L
L
来q
来q
L
T
T
T
T
var numObj = 77.1234;
console.log(numObj.toExponential()); // выведет 7.71234e+1
console.log(numObj.toExponential(4)); // выведет 7.7123e+1
console.log(numObj.toExponential(2)); // выведет 7.71e+1
console.log(77.1234.toExponential()); // выведет 7.71234e+1
console.log(77 .toExponential()); // выведет 7.7e+1
L