8 kyu · bug_fixes

Multiply

DebuggingFundamentals

This code does not execute properly. Try to figure out why.

Solutions

01-solution.jsView on GitHub ↗
function multiply(a, b) {
  return a * b;
}