Skip to content

Instantly share code, notes, and snippets.

@astfarias
Last active August 15, 2017 05:50
Show Gist options
  • Save astfarias/4e63866d72eecc405385e5f7516e09ba to your computer and use it in GitHub Desktop.
Save astfarias/4e63866d72eecc405385e5f7516e09ba to your computer and use it in GitHub Desktop.
JS - Functional Programming - Using JS Functions as Value
// Using Function JS as a Value
var triple = function ( x ) {
return x * 3
}
var waffle = triple
waffle(3) // 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment