JavaScript Programming JavaScript > Code Examples With statement With statement <html> <head> <title>Happy Codings :-) Javascript Examples</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>