S
Sap

  • May 22, 2022
  • Joined May 20, 2022
  • 1 best answer
  • hello, im having a problem with this task. i dont know how to define printUppercaseMessage. I'm using this code,

    function printUpperCaseMessage (message) {
    console.log(message.toUpperCase());
    }

    let myMessage = I'm on a path to becoming a JS developer!;

    printUpperCaseMessage(myMessage);

    • Coderslang_Master replied to this.
    • Sap your function is called printUpperCaseMessage and the requested function is printUppercaseMessage. Notice the difference near the letter c.