JSFiddle - React, Tailwind, and code Playground

by WladesKO

JavaScript

function soma(a, b) {
    console.log(a + b);
}
setTimeout(soma, 2000, 5, 10);