Skip to content

Instantly share code, notes, and snippets.

@flaviorl-net
Last active November 23, 2021 19:00
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/303fbce113785930833bbc78e8530edf to your computer and use it in GitHub Desktop.
Save flaviorl-net/303fbce113785930833bbc78e8530edf to your computer and use it in GitHub Desktop.
//exemplo 1
let quantidadeMesJaneiro = 130;
let quantidadeMesFevereiro = 115;
let totalBimestre = quantidadeMesJaneiro + quantidadeMesFevereiro;
//exemplo 2
let valorUnitario = 450;
let quantidade = 7;
let valorTotal = valorUnitario * quantidade;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment