JavaScript for Line of Business Applications
596.1K views | +1 today
Follow
JavaScript for Line of Business Applications
Keeping track of current JavaScript Frameworks that help design your clientside Business Logic Layers.
Curated by Jan Hesse
Beam to my Inbox:
Your new post is loading...
Your new post is loading...

Popular Tags - Filter using the Funnel

Current selected tags: 'MapReduce', 'javascript'. Clear
Scoop.it!

Introduction to Map and Reduce in Javascript

Introduction to Map and Reduce in Javascript | JavaScript for Line of Business Applications | Scoop.it

Recently I held a short lecture on the use of functions in Javascript, and how it’s possible to use functionality like map, reduce, filter and Javascript’s amazing variable context. I prefer to useunderscore.js so that I can use the wonderful functionality even on old browsers.

Lets start easy with _.map. Map is easy, what it does is take an input array, send each element into a function, and putting the result in a result array. The resulting array contains mapped versions of each element in the input array.

No comment yet.
Scoop.it!

Prime Numbers, Factorial, and Fibonacci Series with JavaScript Array

Prime Numbers, Factorial, and Fibonacci Series with JavaScript Array | JavaScript for Line of Business Applications | Scoop.it

Instead of using loops, JavaScript Array object is quite powerful to create sequences. What about some more complex series and not just a list of consecutive numbers or letters? Fortunately, we still have other Array’s functions such filter, map, every, and reduce at our disposal. Those can be used to generate a list of prime numbers, compute the factorial, and produce the Fibonacci series.

No comment yet.