We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83be115 commit af1d4f8Copy full SHA for af1d4f8
40_math.js
@@ -15,6 +15,10 @@
15
// const result = Math.ceil(Math.random() * 10);
16
// console.log(result); //here ceil never 0, if u have floor please add + 1
17
18
-// min max
19
-const result = Math.max(1, 8, 0, 9);
20
-console.log(result);
+// // min max
+// const result = Math.max(1, 8, 0, 9);
+// console.log(result); //9
21
+
22
23
+// const result = Math.min(1, 8, 0, 9);
24
+// console.log(result); //0
0 commit comments