Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://rawgit.com/lodash/lodash/3.0.1/lodash.min.js"></script>
  <meta charset="utf-8">
  <title>lodash flow function</title>
</head>
<body>
  <script>
    var substractByOne= function(number){
  return number-1;
};
var addByTwo= function(number){
  return number+2;
};
var multiplyByThree= function(number){
  return number*3;
};
var divideByFour = function(number){
  return number/4;
};
var flowFunctionResult = _.flow(substractByOne, addByTwo,multiplyByThree,divideByFour);
var result = flowFunctionResult(6);
console.log("Result: "+result);
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
saan1984pro
0viewers