JSFiddle - React, Tailwind, and code Playground

JavaScript

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

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

graph = new Graph();
Graph.prototype = new Svg();
Graph.prototype.align.call();