Recursive Multiplication
How do I make an recursive multiplication?
Challenged to do multiplication without using *. What is a recursive multiplication? How do you make a recursive multiplication? This script and codes were developed by Steven on 24 September 2022, Saturday.
Recursive Multiplication - Script Codes HTML Codes
<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Recursive Multiplication</title>
</head>
<body> <script src="js/index.js"></script>
</body>
</html>
Recursive Multiplication - Script Codes JS Codes
"use strict";
// Or some recursion perhaps
// Less lazy, handled signs. Feels like I'm missing a trick though.
function mult(x, y) { var resultSign = x < 0 ? // x less than zero y > 0 ? -1 : 1 : // x greater than zero y < 0 ? -1 : 1; x = volvAbs(x); y = volvAbs(y); function doMult(x, y) { if (y === 0) return 0; // End recursion return x + doMult(x, y - 1); } return resultSign === 1 ? doMult(x, y) : -doMult(x, y);
}
function volvAbs(x) { // Stupid negatives return x < 0 ? -x : x;
}
console.clear();
console.log(mult(6, 7)); // 42
console.log(mult(-6, 7)); //-42
console.log(mult(6, -7)); //-42
console.log(mult(-6, -7)); // 42
Developer | Steven |
Username | volv |
Uploaded | September 24, 2022 |
Rating | 3 |
Size | 2,119 Kb |
Views | 58,696 |
Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!
Name | Size |
Heavy Snake | 6,358 Kb |
Beer Event - Remaining Rewards | 2,537 Kb |
Midas Gift Rolls - Updating | 2,897 Kb |
Pet Stats | 10,939 Kb |
A Pen by Steven | 2,755 Kb |
JQuery Ajax | 1,690 Kb |
Closure Example | 2,443 Kb |
Squares Within Range | 2,853 Kb |
Midas Points | 19,443 Kb |
Reddit Spoiler Markdown | 2,077 Kb |
Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!
Name | Username | Size |
HTM5 picture dropzone | Jaysalvat | 2,576 Kb |
APortfolio | Skybutterfly | 5,174 Kb |
Glitchy Text Effect | Kescoe | 2,208 Kb |
Tooltip in table | Roine | 3,713 Kb |
Animated Logo | Shakdaniel | 2,672 Kb |
CSS Chat Bubbles | Boylett | 2,094 Kb |
LBCA - Mail canvas | Emnbdx | 3,856 Kb |
A Pen by Sooba | Sooba | 2,516 Kb |
Subtle site navigation with description | Necks | 3,206 Kb |
Elon Musk - Tribute Page - FreeCodeCamp | Yunnimun | 8,615 Kb |
Surf anonymously, prevent hackers from acquiring your IP address, send anonymous email, and encrypt your Internet connection. High speed, ultra secure, and easy to use. Instant setup. Hide Your IP Now!