Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save krzysztofczernek/ff2441395ca43b65b21954ef389c7d9b to your computer and use it in GitHub Desktop.
Save krzysztofczernek/ff2441395ca43b65b21954ef389c7d9b to your computer and use it in GitHub Desktop.
function add (a, b) {
return a + b
}
function multiply (a, b) {
return a * b
}
const operations = { // here we're using add and multiply as regular values
add,
multiply
}
operations.add(1, 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment