JSFiddle - React, Tailwind, and code Playground

by Ryan Brown

JavaScript

function Operation(x, y) {
    return console.log("X = " + x + " Y = " + y + ", Output = " + 3*(x + 5*y));
    //return 3*(x + 5*y);
}

Operation(1, 1);