JSFiddle - React, Tailwind, and code Playground
HTML
<div id="x">ddd</div>
JavaScript
var $scope = {
me: "hallo"
};
$scope['me'] = "Welt!";
$("#x ").text($scope.me);
<div id="x">ddd</div>
var $scope = {
me: "hallo"
};
$scope['me'] = "Welt!";
$("#x ").text($scope.me);