Skip to content

Instantly share code, notes, and snippets.

@glommer
Last active November 22, 2022 00:05
Show Gist options
  • Save glommer/ffa2c64370788bdbf86c2703d1f36e2b to your computer and use it in GitHub Desktop.
Save glommer/ffa2c64370788bdbf86c2703d1f36e2b to your computer and use it in GitHub Desktop.
const all = await User.findAll();
const user = all.find(user => user.name == "Glauber Costa" && user.age >= 40);
return new Response(user?.email ?? "not found");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment