JSFiddle - React, Tailwind, and code Playground

by Sahin Deniz

JavaScript

function a(d, e = 1, f = 2) {
  b(...arguments);
}

function b(d, e, f) {
  console.log(d, e, f);
}


a(1);