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.
- Multiply the
inputby 5. - Return the calculated result.
Constraints
FundamentalsFunctions
JavaScriptSystem handles I/O — write your function only
Loading...
3 Hidden
Input Arguments
input5
Expected Output
25
Click RUN to test your solution