Plus (x + y)

Description

The addition of two whole numbers is the total amount of those quantities combined.

Inputs

  • first number
  • second number

Outputs

  • first number + second number

Algorithm

/**
 * Plus (x + y): The addition of two whole numbers is the total amount of those quantities combined.
 *
 * @param x1 first number
 * @param x2 second number
 * @return {Array}
 */
function neuron1(x1, x2)
{
math.config({number: 'BigNumber', precision: 64}); return [math.eval(Number(x1) + '+'+Number(x2)).toString()];
}

console.log(neuron1(26, 723));

Rodokmen - poznejte své předky | TOPlist U.I., Umělá inteligence