Skip to content

Instantly share code, notes, and snippets.

@flaviorl-net
Last active November 26, 2021 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flaviorl-net/77d4dcba5746f11a5243ba6f28ae7221 to your computer and use it in GitHub Desktop.
Save flaviorl-net/77d4dcba5746f11a5243ba6f28ae7221 to your computer and use it in GitHub Desktop.
//não há uma palavra chave na assinatura que indica se irá retornar valor ou não.
function ObterQuantidadeComprada(codigoPedido)
{
//...
return 4;
}
//não retorna valor.
function ExecutaCompra(codigoPedido)
{
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment