find the area of a triangle where three sides are 5, 6, 7.

 var a = 5;

var b = 6;

var c = 7;


var s = (a+b+c)/2;


var area = Math.sqrt(s*(s-a)*(s-b)*(s-c));

console.log(area)

Comments

Popular posts from this blog

practice test of Arithmetic Operations: