In the code below, we have
a function positiveOrNegative
.
This function accepts a single
parameter, which is a number.
Your task is to update the
positiveOrNegative
function
to determine whether the provided
number is positive or negative.
If the number is positive,
log to the console,
The provided number is positive.
Otherwise, if the number is negative,
log to the console,
The provided number is negative.