<html>
<body>
<p>Click the Start button to output "Hello" after 2 seconds.</p>
<p>In this example, we also output the parameters that were passed to the alertFunc() function.</p>
<button onclick="myStartFunction()">Start</button>
<p id="demo"></p>
<p id="demo2" style="color:red;"></p>
<script>
var myVar;
function myStartFunction() {
myVar = setTimeout(function(){ alertFunc("First parameter", "Second parameter"); }, 2000);
}
function alertFunc(param1, param2) {
document.getElementById("demo").innerHTML += "Hello ";
document.getElementById("demo2").innerHTML = "Parameters passed to alertFunc(): <br>"
+ param1 + "<br>" + param2 + "<br>";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_settimeout_param2 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:06:51 GMT -->
</html>