'use strict'; function multiply (a, b = 1) { return a * b; } console.log(multiply(5));