Skip to content

Instantly share code, notes, and snippets.

@edo9k
Created August 16, 2019 01:20
Show Gist options
  • Save edo9k/636654cce1ff87c1df9394838ec1629f to your computer and use it in GitHub Desktop.
Save edo9k/636654cce1ff87c1df9394838ec1629f to your computer and use it in GitHub Desktop.
Função calc com switch-case.
calc = (a, b, op) => {
switch (op) {
case '+':
return a + b
break
case '-':
return a - b
break
case '*':
return a * b
break
case '/':
return a / b
break
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment