Skip to content

Commit 40446fa

Browse files
problem 41 completed
1 parent 6aa10ae commit 40446fa

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

problem41/problem.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## Find the expensive product

problem41/problem41.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/* ## Find the expensive product */
2+
3+
function findTheExpesive(product1, product2, product3){
4+
const mostExpensive = Math.max(product1, product2, product3);
5+
if( mostExpensive === product1 ){
6+
return "Most expensive is 'Shirt' ";
7+
}
8+
9+
else if( mostExpensive === product2 ){
10+
return "Most expensive is 'Pants' ";
11+
}
12+
13+
else{
14+
return "Most expensive is 'Watch' ";
15+
}
16+
};
17+
18+
19+
20+
21+
const shirtsPrice = 1500;
22+
const pantsPrice = 5000;
23+
const watchPrice = 3500;
24+
25+
const mostExpensive = findTheExpesive(shirtsPrice, pantsPrice, watchPrice);
26+
console.log(mostExpensive);

0 commit comments

Comments
 (0)