<html>
<body>
<h1>JavaScript Operators</h1>
<h2>The ... Operator</h2>
<p>The "Spread" operator can be used to expand an iterable into more arguments for function calls:</p>
<p id="demo"></p>
<script>
const numbers = [23,55,21,87,56];
let maxValue = Math.max(numbers);
document.getElementById("demo").innerHTML = maxValue;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_oper_spread_arguments by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:12 GMT -->
</html>