JSFiddle - React, Tailwind, and code Playground

JavaScript

function test(a, b){
   a = a + 2;
   b = b + 5;
}

var a = 1;
var b = 2;

test(a, b);

console.log(a);
console.log(b);