Skip to content

Commit 97183ca

Browse files
authored
Create Idk.js
1 parent ee1014a commit 97183ca

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Idk.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
const temperatures = [3,4,5,6,9,7,7345,]
3+
4+
const calcTempAmplitude = function(temps){
5+
let max = temps[0];
6+
let min = temps[0];
7+
8+
9+
for ( let i = 0; i<temps.length; i++);
10+
{
11+
const curTemp = temps[i];
12+
if (typeof curTemp !== 'number' ) continue;
13+
14+
if(temps[i])> max) max = temps[i];
15+
if(temps[i])< min) min = temps[i];
16+
}
17+
18+
console.log(max);
19+
console.log(min);
20+
return max-min;
21+
};
22+
23+
const aplitude = calcTempAmplitude([7,3,6,8,9,10]);

0 commit comments

Comments
 (0)