We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aa10ae commit 40446faCopy full SHA for 40446fa
problem41/problem.md
@@ -0,0 +1 @@
1
+## Find the expensive product
problem41/problem41.js
@@ -0,0 +1,26 @@
+/* ## 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