JSFiddle - React, Tailwind, and code Playground
by Moien Tajik
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<body>
<div ng-app="MyApp" ng-controller="MainController">
FirstName : <input type="text" ng-model="firstName">
LastName : <input type="text" ng-model="lastName"><br>
Full name is : {{firstName + " " + lastName}}
</div>
</body>
JavaScript
var app = angular.module('myApp' , []);
app.controller("MainController" , function($scope)
{
$scope.firstName = "Moien",
$scope.lastName = "Tajik"
});