Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
<head>
<script src="//fb.me/react-with-addons-0.12.0.js"></script>
<meta name="description" content="Immutable Playground" />
  <meta charset="UTF-8">
  <title>Immutable</title>
</head>
<body>
 
<script src="https://rawgit.com/facebook/immutable-js/master/dist/immutable.js"></script>
</body>
</html>
 
let squaredOdds = Immutable.Range(0, Infinity)
    .filter(n => n % 2 !== 0)
    .map(n => n * n)
    .take(1000);
console.log(
  squaredOdds.toArray()
)
Output

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

Dismiss x
public
Bin info
okbelpro
0viewers