This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "lastUpdated": "2026-04-11T11:55:23.766202+00:00", | |
| "kcps": { | |
| "metar": "KCPS 111053Z AUTO 05003KT 10SM BKN095 09/08 A3035 RMK AO2 SLP275 T00940078 $", | |
| "windDirection": 50, | |
| "windSpeed": 3, | |
| "windGust": null, | |
| "visibility": 10, | |
| "temperatureC": 9, | |
| "dewPointC": 8, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for (let i=1;i<101;i++){ | |
| let log; | |
| if(!(i%3))log="fizz"; | |
| if(!(i%5))log=log?"fizzbuzz":"buzz"; | |
| console.log(log||i); | |
| } |