Last active
May 6, 2020 08:05
-
-
Save urcoilbisurco/380292df3ad4764d8c610b68aef02755 to your computer and use it in GitHub Desktop.
block12.js
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
const run = async () => { | |
console.log("Start..."); | |
for(const food of foodArray){ | |
const output = await AIFoodRecognition(food); | |
console.log(output); | |
} | |
console.log("Done!"); | |
} | |
run(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment