Angular variable name is display in output when the view is loading.
test_1.js
Controller file has assign variable
$scope.title = "My View";
test_1.html
is html view file.
<h1> {{ title }} </h1>
Output :-
My View
But some little time display
{{ title }}
when the process is completed then display right value of title
variable.
I want this {{ title }}
type of output is not display in browser.
How it is possible ?