JSFiddle - React, Tailwind, and code Playground

JavaScript

function Svg() {
    this.align = function(align) {
        if(align === 'left') return 0;
    }
}

function Graph() {
    
    this.Svg = new Svg();
    // I want to align text to the left
    this.AlignLeft = function() {
        console.log('<text x="' + this.Svg.align('left') + '"></text>');
    }
}

graph = new Graph();
graph.AlignLeft();