Tag: Software Engineering (Indus…

  • Closures – Part 5 of Functional Programming in JavaScript

    A short video explaining the concept of closures, using JavaScript. This is part of a series, where are learning functional programming using JavaScript. Mozilla JavaScript documentation on Clousures https://developer.mozilla.org/en-US/docs/Web/JavaScript/Closures Code from the episode https://gist.github.com/mpj/b56371c672122a098d52 Playlist of full series You want to follow me on Twitter and Quora: Tweets by mpjme http://www.quora.com/Mattias-Petter-Johansson Original source

  • Currying – Part 6 of Functional Programming in JavaScript

    A short video explaining the concept of curring, using JavaScript. This is part of a series, where are learning functional programming using JavaScript. Currying is when a function, instead of taking all arguments at one time, takes the first one and returns a new function that takes the second one and returns a new function…