Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.min.js"></script>
<meta charset=utf-8 />
<title>ng-click</title>
</head>
<body>
  
    <div ng-controller="TodoCrtl">
      <div ng-repeat="product in products">
       
        <div ng-repeat="subproducts in product">
        <div ng-repeat="subsubproducts in subproducts">
        {{subsubproducts.name}}
        </div>
        <div ng-repeat="product in products">
        
        
      </div>
      </div>
      
    </div>
</body>
</html>
 
function TodoCrtl($scope) {
    
  $scope.products=[
    {ElectricHospitalBed : [
        {name: 'Multifunctional electric hospital bed', code: 'IHC B/E 1001'},
        {name: 'Multifunctional electric hospital bed', code: 'IHC B/E 1002'},
        {name: 'Five functional electric hospital bed with ACP', code: 'IHC B/E 1003'},
        {name: 'Five functional electric hospital bed', code: 'IHC B/E 1004'},
        {name: 'Five functional electric hospital bed with ACP', code: 'IHC B/E 1005'},
        {name: 'Five functional electric hospital bed', code: 'IHC B/E 1006'},
        {name: 'Three functional electric hospital bed', code: 'IHC B/E 1007'},
        {name: 'Three functional electric hospital bed', code: 'IHC B/E 1008'},
        {name: 'Five functional electric hospital bed', code: 'IHC B/E 1009'}
      
  ]},
    {Semi_electric_hospital_bed : []},
    {Manual_hospital_bed: []},
    {Home_care_bed: []},
     {Orthopedics_bed: []},
     {Childrens_bed: []},
     {Trollies : [
      {Patient_trolley: []},
      {Stretcher: []},
      {Nursing_trolley: []},
      {Cambered_trolley:[]}
    ]}
];
  
}
        
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers