JSFiddle - React, Tailwind, and code Playground

by Evan Sharp

HTML

<div ng-app ng-controller="myCtrl">
    {{phones}}
</div>

JavaScript

var objectName= {Data:{guid:['something here']}};
var foo = objectName.Data.guid[0];    
function myCtrl($scope) {
        $scope.phones = [{
            "name": "Nexus S",
                "snippet": "Fast just got faster with Nexus S."
        }, {
            "name": "Motorola XOOM™ with Wi-Fi",
                "snippet": "The Next, Next Generation tablet."
        }, {
            "name": "MOTOROLA XOOM™",
                "snippet": "The Next, Next Generation tablet."
        }, {
            "name": "Test",
                "snippet": foo
        }];
    }