Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
        var movieList = null;
        if (this.props.movies.length > 0) {
            movieList = [];
            for (var i = 0; i < this.props.movies.length; i+=6) {
                var temp = []
                for (var j = i; j < this.props.movies.length && j < i+6; j++) {
                    temp.push(this.movieListGenerator(this.props.movies[j]));
                }
                movieList.push(<div className="row">{temp}</div>);
            }
        }
Output 300px

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

Dismiss x
public
Bin info
xsoulfulxpro
0viewers