with statement : With : Statement JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Statement » With »

 

with statement








The with statement works by placing the repetitive portion of the object's path in parentheses.

The with Statement Reduces Repetitive Code.












<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
inp1 = 1;
inp2 = 2;
inp3 = 3;
with (Math)
{
    alert("The largest number entered was " + max(inp1, inp2, inp3));
    alert("The smallest number entered was " + min(inp1, inp2, inp3));
}
//  -->
</script>
</head>
<body>

</body>
</html>







HTML code for linking to this page:

    Related in same category :
Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Statement
» With