Love beautiful code? We do too.
Number toExponential() trong JavaScript trả về một chuỗi biểu diễn đối tượng Number trong dạng số mũ.
Cú pháp của nó như sau:
number.toExponential( [fractionDigits] )
Chi tiết về tham số
Trả về giá trị
<html>
<head>
<title>Javascript Method toExponential()</title>
</head>
<body>
<script type="text/javascript">
var num=77.1234;
var val = num.toExponential();
document.write("num.toExponential() is : " + val );
document.write("<br />");
val = num.toExponential(4);
document.write("num.toExponential(4) is : " + val );
document.write("<br />");
val = num.toExponential(2);
document.write("num.toExponential(2) is : " + val);
document.write("<br />");
val = 77.1234.toExponential();
document.write("77.1234.toExponential()is : " + val );
document.write("<br />");
val = 77.1234.toExponential();
document.write("77 .toExponential() is : " + val);
</script>
</body>
</html>
Kết quả
num.toExponential() is : 7.71234e+1
num.toExponential(4) is : 7.7123e+1
num.toExponential(2) is : 7.71e+1
77.1234.toExponential()is:7.71234e+1
77 .toExponential() is : 7.71234e+1
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời