Wrox Programmer Forums
|
BOOK: Beginning JavaScript
This is the forum to discuss the Wrox book Beginning JavaScript by Paul Wilton; ISBN: 9780764544057
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning JavaScript section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 8th, 2003, 05:42 PM
Registered User
 
Join Date: Jul 2003
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default functions

Please can you help.

I have tried to write a function but it will not work. I'm sure my mistake is simple but fundemental.

My code is

<html>
<head>
<title>Basic Functions</title>
</head>
<body>

<script language=javaScript>

function timesTable(loLimit,table)
{
var product;
product=loLimit*table;
return product;
}

var table=prompt("Enter the times table required","");
var loLimit=prompt("Enter the lower limit of calculation.","");
var hiLimit=prompt("Enter the upper limit of calculation","");

do
{
timesTable(loLimit,table);
document.write(loLimit+" x "+table+" = "+product+"<br>");
loLimit++;
}
while (loLimit<=hiLimit);

</script>

</body>
</html>

Thankyou

Stuart Overal

 
Old July 8th, 2003, 10:59 PM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 996
Thanks: 2
Thanked 11 Times in 11 Posts
Send a message via Yahoo to melvik
Default

Try this, I hope u get ur mistake/

<html>
<head>
<title>Basic Functions</title>
</head>
<body>

<script language=javaScript>
var product;

function timesTable(aloLimit,atable)
{
product=aloLimit*atable;
return product;
}

var table=prompt("Enter the times table required","");
var loLimit=prompt("Enter the lower limit of calculation.","");
var hiLimit=prompt("Enter the upper limit of calculation","");

do
{
timesTable(loLimit,table);
document.write(loLimit+" x "+table+" = "+product+"<br>");
loLimit++;
}while (loLimit<=hiLimit);

</script>

</body>
</html>

Always:),
Hovik Melkomian.





Similar Threads
Thread Thread Starter Forum Replies Last Post
C functions...??? ethantinder C# 2 April 25th, 2008 02:25 AM
Functions LTello BOOK: Professional JavaScript for Web Developers ISBN: 978-0-7645-7908-0 3 September 15th, 2006 11:15 AM
functions xelepi PHP How-To 1 March 10th, 2006 02:59 AM
Functions Meg Intro Programming 1 January 23rd, 2006 01:03 PM
Help with Functions megabytes C# 1 August 7th, 2003 12:48 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.