Challenge
15.20Exercise - Default Parameters
-
Update the function displayPackageInfo
to have two two arguments
orderID
and status
.
-
Based on the arguments received,
the function should display
Your package #<orderID> is <status>
using a template string.
-
The default value of status
should be "to be dispatched".