function subtract()

in sample-nodejs-app/calculator.js [46:48]


function subtract(num1, num2) {
  return num1 - num2;
}