This website requires JavaScript.
Explore
Help
Register
Sign In
WellingtonDuarteSantos
/
challenge-algorithms-v2.0-wellington-duarte-santos
Watch
1
Star
0
Fork
0
You've already forked challenge-algorithms-v2.0-wellington-duarte-santos
forked from
M3-Academy/challenge-algorithms-v2.0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
335d584521
challenge-algorithms-v2.0-w...
/
02-triangleArea
/
index.js
5 lines
96 B
JavaScript
Raw
Normal View
History
Unescape
Escape
refactor(automacao): template desafio 2 automatizado
2022-10-27 15:07:13 +00:00
export
function
triangleArea
(
base
,
height
)
{
feat(triangleArea): Implementacao da funcao triangleArea()
2022-11-01 11:46:10 +00:00
let
area
=
base
*
height
/
2
;
return
area
;
refactor(automacao): template desafio 2 automatizado
2022-10-27 15:07:13 +00:00
}
Reference in New Issue
Copy Permalink