JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app='MyModule' ng-controller='MyController as mc'>
    <p>{{mc.abcthingy}}</p>
    <p>{{mc.teste}}</p>
    <input ng-value='mc.{{teste}}'>
</div>

JavaScript

angular.module('MyModule', [])

.controller( 'MyController', function($scope){
    self = this;
    var stuff = 'abc';
    
    self[stuff + 'thingy'] = 'hello there';
    $scope.teste = 'fezes'
    self[fezes] = 'bosta';
});