JSFiddle - React, Tailwind, and code Playground
by leez20120909
HTML
<div ng-app=>
<div ng-controller="TestCtrl">
<p>FirstName:<strong >{{firstName}}</strong></p>
<p>Last name: <strong ng-model="lastName"></strong></p>
<p>Last name: <strong ng-model="fullName"></strong></p>
<input type="text" ng-model="firstName" />
</div>
</div>
JavaScript
function TestCtrl($scope){
$scope.firstName = "Bert";
$scope.lastName = "fullName";
$scope.fullName = "fullName";
}