JSFiddle - React, Tailwind, and code Playground

by Cindy Cullen

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<div ng-app>
  <div ng-init="languages = ['HTML','CSS','JavaScript','jQuery','AngularJS']">
    <ul class="list-group">
      <li ng-repeat="language in languages" class="list-group-item">{{ language }}</li>
    </ul>
  </div>
</div>

JavaScript

// Since this is using AngularJS, the javascript code is an extension of the HTML.  Please click the HTML tab to see the code.