You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Write a function, reportingForDuty(), that has two string parameters, rank and lastName, and returns a string in the following format: <RANK> <LASTNAME> reporting for duty!.
// Replace <RANK> with the value of the rank argument and <LASTNAME> with the value of the lastName argument.
function reportingForDuty(rank, lastName) {
console.log(`${rank} ${lastName} reporting for duty!`);