Here's how to calculate the area of a triangle in TypeScript:
index.ts260 chars11 lines
Explanation:
calculateTriangleArea
that takes two parameters; base
and height
, both of type number
.base x height / 2
. We apply this formula inside the function and return the result.base
and height
and call the calculateTriangleArea
function. The result is stored in the variable area
and then logged to the console.gistlibby LogSnag