The output of the code is not showing anywhere on page. I thought it was supposed to show in the bottom box on the right. It showed for some previous exercises but is not showing any more. I refreshed page but still not showing. I can’t see any button to run what I am writing so how can I learn the effects of different inputs?
At the moment its just either right or wrong…
Your code so far
// Example
var firstLetterOfFirstName = "";
var firstName = "Ada";
firstLetterOfFirstName = firstName[0];
// Setup
var firstLetterOfLastName = "";
var lastName = "Lovelace";
// Only change code below this line
firstLetterOfLastName = lastName;
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36.
Thanks for your answer, but it’s not for this exercise in particular, I mean every exercise I cannot see the output of my code… even if I get the correct answer I still can’t see anything it just shows a tick sign
before clicking enter to next challange you can check your output man
if you get tick means you pass the text case now it’s your job to check for output
before clicking only you have to check the output
but after passing all test case you can still check the output by closing that green tick tab and on right side you can do that all
Like the results, normally what the console would return. I want to see different results if I change the code. At the moment only it tells me yes it is right, or no it is wrong.
Even if its right I want to visualise the result of my code so it makes more sense to me.
You need to tell to your code what you want to see in the console, so you can use the console.log() line to say to your code what you want to appear in the console