x
1
2
<html>
3
<body>
4
5
<h2>JavaScript Arrow Functions</h2>
6
7
<p>With arrow functions, you don't have to type the function keyword, the return keyword, and the curly brackets.</p>
8
9
<p>Arrow functions are not supported in IE11 or earlier.</p>
10
11
<p id="demo"></p>
12
13
<script>
14
const x = (x, y) => x * y;
15
document.getElementById("demo").innerHTML = x(5, 5);
16
</script>
17
18
</body>
19
</html>