Articles → JavaScript → Toexponential() Method In Javascript
Toexponential() Method In Javascript
Purpose
Scientific Notation
Syntax
Example
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<script>
var num = 2;
alert(num.toExponential());
</script>
</head>
<body></body></html>
Output