You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Split the text into linesconstlines=text.trim().split('\n');// Initialize an empty array to store the dataconstdata=[];for(leti=1;i<lines.length;i++){const[Month,High,Temp,Low]=lines[i].split(',');console.log(Month,High,Temp,Low);// Debuggingdata.push({Month: Month.trim(),High: +High.replace('°F','').trim(),Temp: +Temp.replace('°F','').trim(),Low: +Low.replace('°F','').trim(),});}// Ensure data parsingconsole.log(data);// Debugging
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: