JavaScript: Returning Boolean Values from Functions

Hi everyone please can someone explain me this code

function isLess(a, b) {
  // Fix this code
  return a*3 === b*2;
}

where the 3 and the 2 coming from to let this function to return true?