JSFiddle - React, Tailwind, and code Playground

HTML

<body ng-app="myApp">     
    <div ng-controller="myCtrl" ng-init="test='helloworld';test1='helloworld2'">

    </div>
    <div ng-controller="myCtrl" ng-init="test='helloworld3';test1='helloworld4'">

    </div>
    <div ng-controller="myCtrl" ng-init="test='helloworld5';test1='helloworld6'">

    </div>
<body>

JavaScript

var app = angular.module("myApp", []);

app.controller("myCtrl", ["$scope",function($scope) {
    setTimeout(function(){ 
        console.log($scope.test);
    	console.log($scope.test1);  
    }, 1);
}]);