JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app>
<div ng-controller="test">
<textarea ng-model="cancelMessage"></textarea>
<span> {{100 - cancelMessage.length}} characters remaining</span>
<button ng-click="clickTest()">clickTest</button>
</div>
</div>
JavaScript
function test($scope){
$scope.cancelMessage = '';
$scope.clickTest = function(){
alert($scope.cancelMessage);
}
}