Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

area of a triangle javascript

var a1 = 10
var a2 = 2

console.log((a1 * a2)/2)

// Area would be 10 in this case, formula for triangle area is (base * height) / 2
Comment

javascript find area of triangle

<!DOCTYPE html>
<html>


<head>
<title>HTML5 template</title>
 <link rel="stylesheet" type="text/css" href="homework14.css">

</head>



<body>
<header>Homework 14</header>

<div id="table1">

<div id="table2">

<div id="table3">

<div id="triangle">
<img src="triangle.gif">
</div>

<div id="table4">

<form>
  <label for="width">Width (b):</label>
  <input type="text" id="width" name="width">
  <label for="height">Height (h):</label>
  <input type="text" id="height" name="height">
</form>
Enter the width and height of your triangle to calculate the area


<input type="button" value="Calculate area">
</div>


</div>

<hr>

<div id="table5">

<form>
  <label for="area">The area is:</label>
  <input type="text" id="area" name="area">
</form>

</div>
</div>

</div>

</body>


</html>
Comment

PREVIOUS NEXT
Code Example
Javascript :: escape double quotes in json 
Javascript :: js currency converter 
Javascript :: get date in format 
Javascript :: version check 
Javascript :: javascript reload section 
Javascript :: how to fetch data from json file in flutter 
Javascript :: Nestjs services update example 
Javascript :: change dictionary value in React js 
Javascript :: Fetch Data Using Getx 
Javascript :: scroll to top vue 
Javascript :: how to prevent render in react 
Javascript :: json date serialize 
Javascript :: react native camscanner application mobile code 
Javascript :: Add Multilanguage Support to React App 
Javascript :: setTimeout() nodejs 
Javascript :: get date in milliseconds javascript 
Javascript :: Delete a user in ExpressJS 
Javascript :: ondragover js 
Javascript :: cypress/react yarn 
Javascript :: sorting algorithms in node.js 
Javascript :: vuejs enter phone with country flag 
Javascript :: blob to pdf javascript 
Javascript :: json remove &#34 
Javascript :: localstorage syntax 
Javascript :: node js simple server 
Javascript :: js queryselectorall 
Javascript :: angular-chart.js 
Javascript :: Object.create Polyfill 
Javascript :: console 
Javascript :: How do I access a class without an instance? +javascript 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =