Coding challenge #1

 




































const data1 = [17, 21, 23];
const data2 = [12, 5, -5, 0, 4];
// function declaration
function printForecast(arr) {
let str = "";

for (let i = 0; i < arr.length; i++) {
str += `${arr[i]}ºC in ${i + 1} days ... `;
}

console.log("..." + str);
}

printForecast(data1);
printForecast(data2);




Comments