New to Angular and seeking some guidance. I currently have two input fields, one for the area code and the other for the number.
// Input field for area code
<input area-input type="tel" required="true" name="area"
ng-model="employee.home.area"></input>
// Input field for number
<input phone-input type="tel" required="true"
name="number" ng-model="employee.home.number"></input>
Is it possible to combine these fields into one, displaying the area code followed by the number?
Thank you in advance for any suggestions or assistance provided.