Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body ng-app="myapp">
  <div ng-controller="MainCtrl">
    
    <div ng-repeat="text in texts">
      <p ng-repeat="p in text">{{p}}</p>
    </div>
    
  </div>
</body>
</html>
 
var myapp = angular.module('myapp',[]);
myapp.controller('MainCtrl', ['$scope', function ($scope) {
  $scope.texts = [
    ['asdasdasd'],
    [
      'asdasdadsdfgfg',
      'rtytuiyuoihjbnb'
    ]
  ];
  
}]);
Output

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

Dismiss x
public
Bin info
hitautodestructpro
0viewers