Technology Programming

JavaScript: How to Multiply Without an Asterisk

    • 1). Open your HTML file in a text editor such as Windows Notepad.

    • 2). Add a function that calculates a multiplication result through repeated addition by adding the following code inside the "<head>" part of the HTML file:

      <script type="text/javascript">

      function multiply() {

      var a = parseInt(document.getElementById('a').value);

      var b = parseInt(document.getElementById('b').value);

      var c=0;

      var count=0;

      var sign = "";

      if (((a<0) && (b>0)) || ((a>0) && (b<0))) {

      sign = "-";

      }

      a = Math.abs(a);

      for (count=1; count<=Math.abs(b); count++) {

      c += a;

      }

      alert(sign + c.toString());

      }

      </script>

    • 3). Add a form within the "<body>" of your HTML file that will get two integers from the user and then call the multiplication function by adding the code:

      <form>

      1st number: <input type="text" name="a"/>

      2nd number: <input type="text" name="b"/>

      <input type="button" value="Multiply!" onclick="multiply()" />

      </form>

      The answer will popup in a box once you click the "Multiply!" button. For example, -4 and 1 will output -4.

    • 4). Save the HTML file and load on your web server to view the multiplication function.

SHARE
RELATED POSTS on "Technology"
Blitzerwarner: Could You Escape the Speed Cameras?
Blitzerwarner: Could You Escape the Speed Cameras?
What Makes a Perfect Web Design Company?
What Makes a Perfect Web Design Company?
Inside No-Fuss Products In Gaming Computers
Inside No-Fuss Products In Gaming Computers
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Gaming Institute, Game Design Schools at PAI-ILS, PAI International Learning Solutions Pune
Free Music Players For Websites
Free Music Players For Websites
'See How NCP Tracks Down Fake Ration Card Holders'
'See How NCP Tracks Down Fake Ration Card Holders'
You Can Stop Panic Attacks in Just two Minutes
You Can Stop Panic Attacks in Just two Minutes
WordPress Blog to WP Site! A Journey to Online Success
WordPress Blog to WP Site! A Journey to Online Success
Videos will give your business portal an extra leverage
Videos will give your business portal an extra leverage
Excellent Ways To Make Weight Loss Work For You
Excellent Ways To Make Weight Loss Work For You
Five Notable Differences between National and International Logo Designs
Five Notable Differences between National and International Logo Designs
Who Should Your Phoenix Web Design Client Be?
Who Should Your Phoenix Web Design Client Be?
White Papers & Other Documents - including ALFLB
White Papers & Other Documents - including ALFLB
Google Analytics Tips
Google Analytics Tips
Want To Make Your Website Faster? Follow These Steps
Want To Make Your Website Faster? Follow These Steps
The Starting of Couture Apparel
The Starting of Couture Apparel
Choose Custom Website Design Services
Choose Custom Website Design Services
Choosing the Right Joomla CMS Developer
Choosing the Right Joomla CMS Developer
A Look at SQL Server Denali AlwaysOn
A Look at SQL Server Denali AlwaysOn
4 Tips to Choose the Perfect Flash Animation Course
4 Tips to Choose the Perfect Flash Animation Course

Leave Your Reply

*