JSFiddle - React, Tailwind, and code Playground

by evgkch

JavaScript

function getPropFromUserProgram(userProgram, callback) {
    return !!userProgram
      ? callback(userProgram)
      : null;
  }
  
 function getACBSize() {
    return getPropFromUserProgram(
      false,
      (userProgram) => userProgram.test
    );
}

console.log(getACBSize())