The Multiplier Machine

Easy+15 XP

Mission Briefing

The trade market operates on a strange exchange rate where everything is valued at five times its weight. You must build a machine to auto-calculate this exchange.

The Concept: Processing Inputs

A function's real power comes from taking an input parameter, performing arithmetic or logic on it, and returning a brand new transformed value.

The Objective

Your function receives a number input.

  1. Multiply the input by 5.
  2. Return the calculated result.

Constraints

    FundamentalsFunctions
    JavaScript
    Loading...
    3 Hidden

    Input Arguments

    input5

    Expected Output

    25

    Click RUN to test your solution