When the view is loading, the Angular variable name will be displayed in the output.
The Controller file test_1.js
has a variable assigned to it:
$scope.title = "My View";
The html view file is test_1.html
.
<h1> {{ title }} </h1>
Output :-
My View
Initially, there might be a slight delay in displaying:
{{ title }}
However, once the process is completed, the correct value of the title
variable will be displayed.
I do not want this type of output {{ title }}
to be visible in the browser. Is there a way to achieve this?