multiply arrays javascript
var sum = 0;
for(var i=0; i< arr1.length; i++) {
sum += arr1[i]*arr2[i];
}
multiply arrays javascript
var sum = 0;
for(var i=0; i< arr1.length; i++) {
sum += arr1[i]*arr2[i];
}
javascript how to multiply numbers
<!-- Multiplying two numbers in HTML and Javascript -->
<main>
<label for="firstNum">Number 1:</label>
<input type="number" id="firstNum" name="firstNum">
<label for="secondNum">Number 2:</label>
<input type="number" id="secondNum" name="secondNum"></br></br>
<button onclick="multiply()">Multiply</button></br></br>
<label for="result">Result</label>
<input type="number" id="result" name="result"/>
</main>
<script>
function multiply(){
num1 = document.getElementById("firstNum").value;
num2 = document.getElementById("secondNum").value;
result = num1 * num2;
document.getElementById("result").value = result;
}
</script>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us