JSFiddle - React, Tailwind, and code Playground
HTML
<!doctype html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.6/angular.min.js"></script>
</head>
<body>
<div>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<hr>
<script>var name = yourName.split('')</script>
<h1>Hello {{name}}!</h1>
</div>
</body>
</html>