Hello, I have tried solving task 85 since yesterday but I am not cracking it This is the code
function printUppercaseMessage (message) { console.log(message.toUpperCase()); } myMessage = 'I\'m on a path to becoming a JS developer!'; printUppercaseMessage(myMessage);
Kanyingi Hey. Your code looks relaible.
What result have you got?
@Kanyingi Could you add the submission results?
function printUppercaseMessage (message) { console.log(message.toUpperCase()); }
myMessage = I'm on a path to becoming a JS developer!;
I'm on a path to becoming a JS developer!
printUppercaseMessage (myMessage);
Status FAILED ● Test suite failed to run ReferenceError: myMessage is not defined
am getting myMessage in Capital Letter but am still getting the test suite failed
You had to change just one letter in the code. As I see you deleted 3 letters. Re-read the article that the task is related to. Focus on a point, how to declare a variable.
VadimNechaev Many thanks i have done it now. i had to use Let to declare the word a variable