I do not know what to do on task 85, i need help, i did not get it
function printUppercaseMessage (message) {
console.log(message.toUpperCase());
}

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

printUppercaseMessage(myMessage);
i also tried getMyMessage =I'm on a path to becoming a JS developer!;

printUppercaseMessage(myMessage);
@Coderslang_Master

  • Harix replied to this.
  • uchebest Try to make these changes to the code
    function printUppercaseMessage(message) {
    console.log(message.toUpperCase());
    }

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

    printUppercaseMessage(myMessage);

    uchebest Try to make these changes to the code
    function printUppercaseMessage(message) {
    console.log(message.toUpperCase());
    }

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

    printUppercaseMessage(myMessage);

      Harix this is a correct solution, however, I doubt that by copying/pasting it they'd learn much. Let's try to use hints instead of ready-made solutions.

      Write a Reply...