Passing a Value to a Function in JavaScript – An Example

By | August 2, 2011

Hi,

Given below, is an example for passing a value to a function in JavaScript.

<html>
<head>
<title>Passing A Value To A Function</title>
<script language="JavaScript">
<!--
function yourFunc(urVal)
{
    alert(urVal);
}
//  -->
</script>
</head>
<body>
<P>Click <input type="button" value="this" onClick="yourFunc('CoderzHeaven')"> button for passing value!</p>
<br>
</body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *