<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JavaScript Arrow function (addition of number)</title>
</head>
<body>
<pre> <!-- Use pre element for work document.writeln() method -->
<script type="text/javascript">
// Not required parentheses around lower-precedence expression
var addition = add => add + add;
document.writeln("Addition of number: " + addition(10));
</script>
</pre>
</body>
</html>