check

if we want, we can also just check if something is BITABLE or not.

this language returns true if it starts with "pasta" and false if not.

TRANSLATED:



this is the EASIEST one so far!

function checkPasta(text) {
  return text.startsWith("pasta")
}

back to the dream