Good evening,
I wanted to deepen my knowledge of javascript by understanding the inner workings of some frameworks.
There is something I can not find, how does AngularJS and VueJS do the Data Binding in the view.
Example:
<body>
<div>{{name}}</div>
</body>
<script>
//.. Blah
$scope.name = "Mariana";
</script>
Returns
<div>Filipe</div>
How do I calculate that the response is a bit long, if someone could point me to a site that explains how to achieve this effect, I was very grateful.
Thank you all at once.