JSFiddle - React, Tailwind, and code Playground
by santoshpatro
HTML
<div ng-app="" ng-controller="GetFullNameController">FirstName:
<input type="text" ng-model="firstName" />
<br/>Last Name:
<input type="text" ng-model="lastName" />
<br/>
<button ng-click="GetFullName()">FullName</button>
<div>Welcome {{ fullName }}</div>
</div>
JavaScript
function GetFullNameController($scope) {
$scope.GetFullName = function () {
$scope.fullName = $scope.firstName + " " + $scope.lastName;
$scope.firstName = "";
$scope.lastName = "";
};
}