Last active
August 26, 2022 01:30
-
-
Save dogweather/4f4cdecb0e57063ca1a63a463752962c to your computer and use it in GitHub Desktop.
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
let car_ids = []; | |
for (let i = 1; i <= 5; i++) { | |
const car_id = `car-${i}`; | |
if (car_is_empty(car_id)) { | |
car_ids.push(car_id); | |
} | |
} | |
return car_ids; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment