Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BSierakowski/4a81e6c71f72121db38d7f253ccff3ab to your computer and use it in GitHub Desktop.
Save BSierakowski/4a81e6c71f72121db38d7f253ccff3ab to your computer and use it in GitHub Desktop.
getAllLaunchInformation().then((launchData) => {
let successStreak = 0;
launchData.map((launch) => {
if(launch.launch_success === true ) {
successStreak++;
} else if (launch.launch_success === false) {
successStreak = 0;
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment