My input is linked to a property on scope:
<input type="text" ng-model="folderName">
$scope.folderName = ""
If the input has a value, folderName will be equal to that string. However, if I clear the input, folderName
becomes undefined
instead of an empty string. Is this behavior normal?