Can someone please tell me how I can use angularJS variable in the below statements. So Instead of scenario.InterestRate I want to add a angular variable {{x.rate}} and in place of scenario.Rate I want {{x.flat}}
<td class="text-right">
@String.Format("{0:F4}", scenario.InterestRate)
</td>
@if (scenario.Rate != null)
Thanks