Using Angular, I would like to know how to add a space before, and a comma after {{name}} so that if there is not a name entered into the input, then the web page will just display: Hello ... BUT, if there is a name entered, the page will display: Hello Sarah,
How do I make that extra space and extra comma appear conditional to whether or not the name exists?
<h1>Hello {{name}},</h1>
<h1>Welcome to my website!</h1>
<h1>Please enter your name:</h1>
<input type="text" ng-model="name">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>