JSFiddle - React, Tailwind, and code Playground

by orjan

JavaScript

function myFunction(x, y) {
    var a = x;
    var b = y;
    console.log(a);
    console.log(b);
}
myFunction('test1', 'test2');