Examining the Angular 2+ code snippet below, there is an Array defined in TypeScript:
models = [{idModele: 1, model: "Bianca", price: 500}, {idModele: 2, model: "etc", price: 600} ]
The query here is about setting up a mechanism where selecting a specific model would dynamically display its price within a < p > tag or similar element.
An illustration using HTML Example:
<select class="form-control" id="modeles" formControlName="modeles">
<option selected>Choisir...</option>
<option *ngFor="let modele of modeles">{{ modele.modele }}</option>
</select>