JSFiddle - React, Tailwind, and code Playground

by artgas_pro

JavaScript

function addNumbers(a, b, c) {
    let sum = a + b;
    return sum, a, b, c;
}

let result = addNumbers(3, 4);
console.log(result);